summaryrefslogtreecommitdiff
path: root/depcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'depcheck.py')
-rwxr-xr-xdepcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/depcheck.py b/depcheck.py
index 3bbe2d7..884f2ad 100755
--- a/depcheck.py
+++ b/depcheck.py
@@ -453,7 +453,7 @@ def main():
(mirror.releasetime,))
archs = set(row[0] for row in cur.fetchall())
print("checking %s" % " ".join(sorted(archs)))
- now = datetime.datetime.utcnow()
+ now = datetime.datetime.utcnow().replace(microsecond=0)
mapper = multiprocessing.Pool().imap_unordered if args.parallel else map
for architecture, state in mapper(functools.partial(main_docheck, mirror),
archs):