Index: all.tar.gz =================================================================== Kann nicht anzeigen: Dateityp ist als binär angegeben. svn:mime-type = application/octet-stream Index: umc/python/appcenter/app_center.py =================================================================== --- umc/python/appcenter/app_center.py (Revision 55789) +++ umc/python/appcenter/app_center.py (Arbeitskopie) @@ -699,7 +699,6 @@ # e.g. Name, Description cls.update_conffiles() - # TODO: would be nice if vendors provided ${app}16.png # special handling for icons for png in glob(os.path.join(FRONTEND_ICONS_DIR, '**', 'apps-*.png')): os.unlink(png) @@ -750,11 +749,11 @@ if cls._all_applications is None: cls._all_applications = [] - # first of all, look for local archive - cls._extract_local_archive() # query all applications from the server if not only_local: cls.sync_with_server() + # look for local archive anyway + cls._extract_local_archive() for ini_file in glob(os.path.join(CACHE_DIR, '*.ini')): cls._all_applications.append(Application(ini_file, localize))