diff options
author | Ruben Rodriguez <ruben@trisquel.info> | 2015-07-17 14:14:57 -0500 |
---|---|---|
committer | Ruben Rodriguez <ruben@trisquel.info> | 2015-07-17 14:14:57 -0500 |
commit | 34607c354bf8d176ca7410f6f0b542f74b04e5e4 (patch) | |
tree | 5b5eaf32f0018f51de3be776da9cc47f0b6fd89e | |
parent | 557dfe9f7ce0d53400c83b6b8736205e79f3b133 (diff) |
Use "Copyright" instead of the unicode (C) symbol on export
-rw-r--r-- | export.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -165,7 +165,7 @@ def srcpkg_extract_licenses(header, filess, licenses, cl_date, cl_uploader): canon = lmap.get(ldesc.lower(), 'Other') # XXX: Should maybe bail if there's no copyright field. cp = ''.join( - u'© %s\n' % line.lstrip() + u'Copyright %s' % line.lstrip() for line in files.dropna().get('Copyright', '').splitlines()) cp = cp.encode('utf8') txt = txt.encode('utf8') |