From: Zac Medico Date: Thu, 20 Oct 2011 21:29:23 +0000 (-0700) Subject: update_copyright: remove stray semicolon X-Git-Tag: v2.2.0_alpha70~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fa0374f86b3aa1ba52bbb200195fd7b8b7754245;p=portage.git update_copyright: remove stray semicolon --- diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py index 7f7d62acf..ba344078d 100644 --- a/pym/repoman/utilities.py +++ b/pym/repoman/utilities.py @@ -571,7 +571,7 @@ def update_copyright(fn_path, year, pretend): f = io.open(f, mode='w', encoding=_encodings['repo.content'], errors='backslashreplace') for line in new_header: - f.write(line); + f.write(line) for line in fn_hdl: f.write(line) f.close()