1
0
Fork 0

Patch from Norman to fix a slight oversite in file date querying.

This commit is contained in:
curt 2003-08-28 14:54:32 +00:00
parent 3ffd52820c
commit 5717e1df5f

View file

@ -112,7 +112,7 @@ def terra_fit(fname, thresh=1, count=1000, factor=1.0/30.0, minnodes=50):
gzName = basename+".fit.gz"
try:
if path.getmtime(gzName) > path.getmtime(fname):
if os.path.getmtime(gzName) > os.path.getmtime(fname):
print "Skipping: %s is newer then %s"%(gzName,fname)
return
except: