Commit 8721048e authored by Jim Fulton's avatar Jim Fulton

parent 0eb0a407
...@@ -28,7 +28,7 @@ import tempfile ...@@ -28,7 +28,7 @@ import tempfile
class CommitLog: class CommitLog:
def __init__(self): def __init__(self):
self.file = tempfile.TemporaryFile(suffix=".log") self.file = tempfile.TemporaryFile(suffix=".comit-log")
self.pickler = cPickle.Pickler(self.file, 1) self.pickler = cPickle.Pickler(self.file, 1)
self.pickler.fast = 1 self.pickler.fast = 1
self.stores = 0 self.stores = 0
......
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