From aa4e5408cbf6ac4be151134083167c555c9b5196 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 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):', -- 2.26.2