def backgrounds():
     '''called from skinshortcuts to retrieve listing of all backgrounds'''
     if sys.version_info.major == 3:
         from . import skinshortcuts
     else:
         import skinshortcuts
     skinshortcuts.get_backgrounds()
    def backgrounds():
        """called from skinshortcuts to retrieve listing of all backgrounds"""
        import skinshortcuts

        skinshortcuts.get_backgrounds()
 def backgrounds():
     '''called from skinshortcuts to retrieve listing of all backgrounds'''
     import skinshortcuts
     skinshortcuts.get_backgrounds()