Read in files with universal newline support.

This commit is contained in:
Adam Woodbeck 2014-11-28 13:28:16 -05:00
parent 6254038ea3
commit 122e6b2ca1

View file

@ -111,7 +111,7 @@ def open_file(filename):
if not os.access(filename, os.R_OK):
raise IOError("the file '{0}' is not readable".format(filename))
return file(filename)
return file(filename, 'rU')
def rollback(config, checkpoints):