Commit e6b89797 authored by Kevin Dalton's avatar Kevin Dalton
Browse files

small typo in checkpointreporter.py true --> True

 Changes to be committed:
	modified:   checkpointreporter.py

there is a small typo in checkpointreporter.py in openmm. line 81 has:
self._own_handle = true
instead of True.
parent c4acc7d2
...@@ -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