Commit 2e5f28f7 authored by Guido van Rossum's avatar Guido van Rossum

Convert mtime to int.

parent 20e12925
......@@ -544,7 +544,7 @@ class Indexer:
st = os.stat(path)
except os.error, msg:
return 0
return st[ST_MTIME]
return int(st[ST_MTIME])
def maycommit(self):
self.trans_count += 1
......
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