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>
Wed, 2 Jan 2013 00:27:09 +0000 (19:27 -0500)
update_copyright/project.py

index 80b10c0bf689d4835c5b1576d3aa278d898769f2..fc988d50a57a7a75934d649a1682464ab8222976 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=u'# ', width=self._width),
+                prefix=(u'# ', u'# ', None), width=self._width),
             u'', u'import textwrap as _textwrap', u'', u'',
             u'LICENSE = """',
             _utils.copyright_string(
                 original_year=original_year, final_year=current_year,
                 authors=authors, text=self._copyright, info=self._info(),
-                prefix=u'', width=self._width),
+                prefix=(u'', u'', None), width=self._width),
             u'""".strip()',
             u'',
             u'def short_license(info, wrap=True, **kwargs):',