diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-14 15:07:59 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-07-14 15:07:59 -0600 |
commit | d10acd3ebf889fc50054b4da9c1962bad79533e1 (patch) | |
tree | 38970704a658d9ed31585c5518007d48ade6bac6 /main | |
parent | 9b6561a2c1a99023a5cad68a1763a07c4aecae8d (diff) | |
parent | 7f7598cf43e6b630ac21bc9a435773773213ea60 (diff) |
Merge branch 'archweb-generic2'
Conflicts:
Makefile
templates/public/index.html
Diffstat (limited to 'main')
-rw-r--r-- | main/templatetags/pgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/templatetags/pgp.py b/main/templatetags/pgp.py index afad9df2..e93e5bca 100644 --- a/main/templatetags/pgp.py +++ b/main/templatetags/pgp.py @@ -15,7 +15,7 @@ def format_key(key_id): # normal display format is 5 groups of 4 hex chars seperated by spaces, # double space, then 5 more groups of 4 hex chars split = tuple(key_id[i:i+4] for i in range(0, 40, 4)) - return u'%s %s' % (' '.join(split[0:5]), ' '.join(split[5:10])) + return u'%s\u00a0 %s' % (' '.join(split[0:5]), ' '.join(split[5:10])) return u'0x%s' % key_id @register.simple_tag |