mercurial/repair.py
changeset 30975 22fbca1d11ed
parent 30781 f2c069bf78ee
child 31232 254f98326eef
--- a/mercurial/repair.py	Wed Feb 15 11:53:59 2017 -0800
+++ b/mercurial/repair.py	Wed Feb 15 13:17:39 2017 -0800
@@ -12,7 +12,6 @@
 import hashlib
 import stat
 import tempfile
-import time
 
 from .i18n import _
 from .node import short
@@ -905,10 +904,10 @@
     # the operation nearly instantaneous and atomic (at least in well-behaved
     # environments).
     ui.write(_('replacing store...\n'))
-    tstart = time.time()
+    tstart = util.timer()
     util.rename(srcrepo.spath, backupvfs.join('store'))
     util.rename(dstrepo.spath, srcrepo.spath)
-    elapsed = time.time() - tstart
+    elapsed = util.timer() - tstart
     ui.write(_('store replacement complete; repository was inconsistent for '
                '%0.1fs\n') % elapsed)