Corrected bug with new way of checking snapshot times.

这个提交包含在:
Craig Warren
2016-04-27 13:59:56 +01:00
父节点 988cb8d3b4
当前提交 fa25801588

查看文件

@@ -436,7 +436,7 @@ def process_multicmds(multicmds, G):
except:
time = float(tmp[9])
if time > 0:
time = round_value((tmp[9] / G.dt)) + 1
time = round_value((time / G.dt)) + 1
else:
raise CmdInputError("'" + cmdname + ': ' + ' '.join(tmp) + "'" + ' time value must be greater than zero')