Commit 364dbabb authored by Andreas Jung's avatar Andreas Jung

Fixed broken join()

parent cad5295e
......@@ -71,7 +71,7 @@ class CatalogAware:
for user, roles in self.get_local_roles():
if 'Owner' in roles:
users.append(user)
return ', '.join(users, ', ')
return ', '.join(users)
def onDeleteObject(self):
"""Object delete handler. I think this is obsoleted by
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment