Index: umc/python/pkgdb/__init__.py =================================================================== --- umc/python/pkgdb/__init__.py (revision 5030) +++ umc/python/pkgdb/__init__.py (working copy) @@ -282,13 +282,13 @@ if not 'sysrole' in PROPOSALS: what = 'fetching system roles' sysroles = self._execute_query('sql_getall_systemroles'); - PROPOSALS['sysrole'] = sysroles[0] + PROPOSALS['sysrole'] = sysroles MODULE.info(" ++ system roles: ['%s']" % "','".join(sysroles[0])) if not 'sysversion' in PROPOSALS: what = 'fetching system versions' sysversions = self._execute_query('sql_getall_systemversions'); - PROPOSALS['sysversion'] = sysversions[0] + PROPOSALS['sysversion'] = sysversions MODULE.info(" ++ system versions: ['%s']" % "','".join(sysversions[0])) # make 'systems not updated' pattern to a selection too @@ -809,4 +809,4 @@ options['operator1'] = '!=' options['pattern1'] = 'deinstall' - return options \ No newline at end of file + return options