1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-13 17:16:23 +01:00

core: fix get_group error message

This commit is contained in:
Dominique Leuenberger 2015-08-06 12:52:34 +02:00
parent e435a84440
commit 0e32b71491

View File

@ -4303,7 +4303,7 @@ def get_group(apiurl, group):
f = http_GET(u)
return ''.join(f.readlines())
except HTTPError:
print('user \'%s\' not found' % group)
print('group \'%s\' not found' % group)
return None
def get_user_meta(apiurl, user):