From 34607c354bf8d176ca7410f6f0b542f74b04e5e4 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Fri, 17 Jul 2015 14:14:57 -0500 Subject: Use "Copyright" instead of the unicode (C) symbol on export --- export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export.py b/export.py index 551708f..2cb0bd3 100644 --- a/export.py +++ b/export.py @@ -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') -- cgit v1.2.3