project: use (start, middle, end) prefixes in copyright_string() calls
[update-copyright.git] / 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):',