Commit b07d729c authored by Guido van Rossum's avatar Guido van Rossum

correct call to unparse, should be putentry now

parent 81be17bd
...@@ -214,7 +214,7 @@ class CVS: ...@@ -214,7 +214,7 @@ class CVS:
"""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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment