summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/compileall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index 8c678e4..9451a60 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -57,7 +57,7 @@ def compile_dir(dir, maxlevels=10, ddir=None,
if tail == '.py':
if not force:
try:
- mtime = os.stat(fullname).st_mtime
+ mtime = int(os.stat(fullname).st_mtime)
expect = struct.pack('<4sl', imp.get_magic(), mtime)
cfile = fullname + (__debug__ and 'c' or 'o')
with open(cfile, 'rb') as chandle: