hgext/remotefilelog/remotefilelogserver.py
changeset 40842 fbd053af2eda
parent 40614 aa588bf40a08
child 41676 0531dff73d0b
--- a/hgext/remotefilelog/remotefilelogserver.py	Tue Dec 04 16:09:20 2018 -0800
+++ b/hgext/remotefilelog/remotefilelogserver.py	Tue Dec 04 16:23:00 2018 -0800
@@ -388,14 +388,12 @@
     days = repo.ui.configint("remotefilelog", "serverexpiration")
     expiration = time.time() - (days * 24 * 60 * 60)
 
-    _removing = _("removing old server cache")
-    count = 0
-    ui.progress(_removing, count, unit="files")
+    progress = ui.makeprogress(_("removing old server cache"), unit="files")
+    progress.update(0)
     for root, dirs, files in os.walk(cachepath):
         for file in files:
             filepath = os.path.join(root, file)
-            count += 1
-            ui.progress(_removing, count, unit="files")
+            progress.increment()
             if filepath in neededfiles:
                 continue
 
@@ -403,4 +401,4 @@
             if stat.st_mtime < expiration:
                 os.remove(filepath)
 
-    ui.progress(_removing, None)
+    progress.complete()