View | Details | Raw Unified | Return to bug 55020
Collapse All | Expand All

(-)a/management/univention-appcenter/python/appcenter/actions/__init__.py (-1 / +1 lines)
Lines 77-83 class StoreAppAction(Action): Link Here
77
                       if self.cache_class:
77
                       if self.cache_class:
78
                               app = self.cache_class.find_by_string(val)
78
                               app = self.cache_class.find_by_string(val)
79
                       else:
79
                       else:
80
                               app = self.cache_class.split_app_string(val)
80
                               app = Apps.split_app_string(val)
81
                       if app is None:
81
                       if app is None:
82
                               parser.error('Unable to find app %s. Maybe "%s update" to get the latest list of applications?' % (val, sys.argv[0]))
82
                               parser.error('Unable to find app %s. Maybe "%s update" to get the latest list of applications?' % (val, sys.argv[0]))
83
                       apps.append(app)
83
                       apps.append(app)

Return to bug 55020