mirror of https://github.com/python/cpython.git
correct call to unparse, should be putentry now
This commit is contained in:
parent
81be17bdae
commit
b07d729c2d
|
@ -214,7 +214,7 @@ def putentries(self):
|
||||||
"""Write CVS/Entries back"""
|
"""Write CVS/Entries back"""
|
||||||
f = self.cvsopen("Entries", 'w')
|
f = self.cvsopen("Entries", 'w')
|
||||||
for e in self.values():
|
for e in self.values():
|
||||||
f.write(e.unparse())
|
f.write(e.putentry())
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
def getlocalfiles(self):
|
def getlocalfiles(self):
|
||||||
|
|
Loading…
Reference in New Issue