"vscode:/vscode.git/clone" did not exist on "9a4e2b0209278f73e097ac33cdad0def870a09b6"
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):
self._reportInterval = reportInterval
if isinstance(file, basestring):
self._own_handle = true
self._own_handle = True
self._out = open(file, 'w+b', 0)
else:
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