update_copyright: remove stray semicolon
authorZac Medico <zmedico@gentoo.org>
Thu, 20 Oct 2011 21:29:23 +0000 (14:29 -0700)
committerZac Medico <zmedico@gentoo.org>
Thu, 20 Oct 2011 21:29:23 +0000 (14:29 -0700)
pym/repoman/utilities.py

index 7f7d62acfc13678f835e26c3242ccc833e2eb502..ba344078d2d3666587d58a3233cfeeb229f909c4 100644 (file)
@@ -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()