]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
correct call to unparse, should be putentry now
authorGuido van Rossum <guido@python.org>
Fri, 28 Apr 1995 15:25:44 +0000 (15:25 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 28 Apr 1995 15:25:44 +0000 (15:25 +0000)
Demo/pdist/cvslib.py

index 5ecf71e53613cd5ca4b65ebbc85734f5f9eba030..390b31e852c769febd3f8a175f6ef9399dc242a8 100755 (executable)
@@ -214,7 +214,7 @@ class CVS:
                """Write CVS/Entries back"""
                f = self.cvsopen("Entries", 'w')
                for e in self.values():
-                       f.write(e.unparse())
+                       f.write(e.putentry())
                f.close()
 
        def getlocalfiles(self):