project: use (start, middle, end) prefixes in copyright_string() calls
authorW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 21:44:15 +0000 (17:44 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 25 Oct 2012 21:44:15 +0000 (17:44 -0400)
update_copyright/project.py

index 7b67e014cf96a683d4d2d34fff185f3478e2b653..452a33fac388fe6b68fcf6bf7f91901c80e41001 100644 (file)
@@ -222,13 +222,13 @@ class Project (object):
             _utils.copyright_string(
                 original_year=original_year, final_year=current_year,
                 authors=authors, text=self._copyright, info=self._info(),
-                prefix='# ', width=self._width),
+                prefix=('# ', '# ', None), width=self._width),
             '', 'import textwrap as _textwrap', '', '',
             'LICENSE = """',
             _utils.copyright_string(
                 original_year=original_year, final_year=current_year,
                 authors=authors, text=self._copyright, info=self._info(),
-                prefix='', width=self._width),
+                prefix=('', '', None), width=self._width),
             '""".strip()',
             '',
             'def short_license(info, wrap=True, **kwargs):',