We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b136202 commit 5a32f3aCopy full SHA for 5a32f3a
1 file changed
ppadb/sync_async/__init__.py
@@ -20,7 +20,7 @@ def _get_src_info(src):
20
if not exists:
21
return exists, None, None
22
23
- timestamp = os.stat(src).st_mtime
+ timestamp = int(os.stat(src).st_mtime)
24
total_size = os.path.getsize(src)
25
26
return exists, timestamp, total_size
0 commit comments