Skip to content

Commit

Permalink
Fixed broken join()
Browse files Browse the repository at this point in the history
  • Loading branch information
zopyx committed Jan 11, 2003
1 parent babbb14 commit c64b265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CatalogPathAwareness.py
Expand Up @@ -71,7 +71,7 @@ def creator(self):
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
Expand Down

0 comments on commit c64b265

Please sign in to comment.