projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8dfd858
)
update_copyright: remove stray semicolon
author
Zac Medico
<zmedico@gentoo.org>
Thu, 20 Oct 2011 21:29:23 +0000
(14:29 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 20 Oct 2011 21:29:23 +0000
(14:29 -0700)
pym/repoman/utilities.py
patch
|
blob
|
history
diff --git
a/pym/repoman/utilities.py
b/pym/repoman/utilities.py
index 7f7d62acfc13678f835e26c3242ccc833e2eb502..ba344078d2d3666587d58a3233cfeeb229f909c4 100644
(file)
--- 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()