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/03/12 21:04:51 UTC

[2/50] [abbrv] git commit: [#5933] Fix project_admins macro to not fail on unicode names

[#5933] Fix project_admins macro to not fail on unicode names


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

Branch: refs/heads/si/5453
Commit: ef117186f4d5a807186b96cabe222ef00fb045d2
Parents: 4e1b450
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Thu Mar 7 17:21:54 2013 +0000
Committer: Dave Brondsema <db...@geek.net>
Committed: Thu Mar 7 17:52:08 2013 +0000

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


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/ef117186/Allura/allura/lib/macro.py
----------------------------------------------------------------------
diff --git a/Allura/allura/lib/macro.py b/Allura/allura/lib/macro.py
index bfc7d11..7277a36 100644
--- a/Allura/allura/lib/macro.py
+++ b/Allura/allura/lib/macro.py
@@ -332,4 +332,4 @@ def project_admins():
                 url=user_role.user.url(),
                 name=user_role.user.display_name))
             for user_role in admin_role.users_with_role())
-    return '<p>{}</p>'.format(output)
+    return u'<p>{}</p>'.format(output)