From: W. Trevor King Date: Thu, 25 Oct 2012 21:44:15 +0000 (-0400) Subject: project: use (start, middle, end) prefixes in copyright_string() calls X-Git-Tag: v0.5~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aa4e5408cbf6ac4be151134083167c555c9b5196;p=update-copyright.git project: use (start, middle, end) prefixes in copyright_string() calls --- diff --git a/update_copyright/project.py b/update_copyright/project.py index 7b67e01..452a33f 100644 --- a/update_copyright/project.py +++ b/update_copyright/project.py @@ -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):',