You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/06/04 22:03:02 UTC

[06/16] git commit: [#6134] Keep roles comma-separated on _members page

[#6134] Keep roles comma-separated on _members page

Signed-off-by: Cory Johns <cj...@slashdotmedia.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/f9d1c454
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/f9d1c454
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/f9d1c454

Branch: refs/heads/cj/6218
Commit: f9d1c45432463aef87305c3fbb1e0ef4672cc2ec
Parents: 3fe4b3c
Author: Cory Johns <cj...@slashdotmedia.com>
Authored: Tue Jun 4 14:54:03 2013 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Tue Jun 4 14:54:03 2013 +0000

----------------------------------------------------------------------
 Allura/allura/controllers/project.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/f9d1c454/Allura/allura/controllers/project.py
----------------------------------------------------------------------
diff --git a/Allura/allura/controllers/project.py b/Allura/allura/controllers/project.py
index 9436e87..e42bd2f 100644
--- a/Allura/allura/controllers/project.py
+++ b/Allura/allura/controllers/project.py
@@ -349,7 +349,7 @@ class ProjectController(FeedController):
                     display_name=user.display_name,
                     username=user.username,
                     url=user.url(),
-                    roles=' '.join(sorted(roles)))
+                    roles=', '.join(sorted(roles)))
             if 'Admin' in roles:
                 admins.append(u)
             elif 'Developer' in roles: