aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--export.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/export.py b/export.py
index bdccf7a..9adfd62 100644
--- a/export.py
+++ b/export.py
@@ -168,7 +168,10 @@ def srcpkg_extract_licenses(header, filess, licenses):
yield Template('Project license', [
('License', canon),
- ('License note', (cp + '\n' + txt))])
+ ('License copyright', cp),
+ ('License verified by', 'Debian'),
+ ('License verified date', today()),
+ ('License note', txt)])
def parse_person(s):
match = re.match('([^<]+)\s+<([^>]+)>', s)