Commit e2c272d0 authored by peastman's avatar peastman
Browse files

Merge pull request #600 from kmdalton/master

small typo in checkpointreporter.py true --> True
parents c4acc7d2 e6b89797
...@@ -78,7 +78,7 @@ class CheckpointReporter(object): ...@@ -78,7 +78,7 @@ class CheckpointReporter(object):
self._reportInterval = reportInterval self._reportInterval = reportInterval
if isinstance(file, basestring): if isinstance(file, basestring):
self._own_handle = true self._own_handle = True
self._out = open(file, 'w+b', 0) self._out = open(file, 'w+b', 0)
else: else:
self._out = file self._out = file
......
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