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-Url: http://git.tremily.us/?p=update-copyright.git;a=commitdiff_plain;h=6ab41c605cb187e79a8e65a8d23f65e8bbba9c14 project: use (start, middle, end) prefixes in copyright_string() calls --- diff --git a/update_copyright/project.py b/update_copyright/project.py index 80b10c0..fc988d5 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=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):',