From 6ab41c605cb187e79a8e65a8d23f65e8bbba9c14 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 25 Oct 2012 17:44:15 -0400 Subject: [PATCH] project: use (start, middle, end) prefixes in copyright_string() calls --- update_copyright/project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):', -- 2.26.2