Patch from Norman to fix a slight oversite in file date querying.
This commit is contained in:
parent
3ffd52820c
commit
5717e1df5f
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ def terra_fit(fname, thresh=1, count=1000, factor=1.0/30.0, minnodes=50):
|
||||||
gzName = basename+".fit.gz"
|
gzName = basename+".fit.gz"
|
||||||
|
|
||||||
try:
|
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)
|
print "Skipping: %s is newer then %s"%(gzName,fname)
|
||||||
return
|
return
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Add table
Reference in a new issue