diff options
Diffstat (limited to 'Lib/dos_8x3/py_compi.py')
-rwxr-xr-x | Lib/dos_8x3/py_compi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos_8x3/py_compi.py b/Lib/dos_8x3/py_compi.py index 2e68ba8..fba7b1d 100755 --- a/Lib/dos_8x3/py_compi.py +++ b/Lib/dos_8x3/py_compi.py @@ -16,7 +16,7 @@ def compile(file, cfile = None): f = open(file) codestring = f.read() f.close() - timestamp = os.stat(file)[8] + timestamp = long(os.stat(file)[8]) codeobject = __builtin__.compile(codestring, file, 'exec') if not cfile: cfile = file + 'c' |