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/07 18:22:14 UTC

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

Updated Branches:
  refs/heads/tv/5933 [created] 0a4fa8cb3


[#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/0a4fa8cb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/0a4fa8cb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/0a4fa8cb

Branch: refs/heads/tv/5933
Commit: 0a4fa8cb3e2adaf6074a0590cbafed13df641639
Parents: 86b650a
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Thu Mar 7 17:21:54 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Thu Mar 7 17:21:54 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/0a4fa8cb/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)