hgext/progress.py
changeset 10815 32b213b9b22c
parent 10788 ca6ba6cac6cd
child 10891 83af68e38be3
--- a/hgext/progress.py	Thu Apr 01 17:51:59 2010 -0500
+++ b/hgext/progress.py	Fri Apr 02 15:22:00 2010 -0500
@@ -165,10 +165,10 @@
                 self.show(topic, pos, item, unit, total)
         return orig(topic, pos, item=item, unit=unit, total=total)
 
-    def write(self, orig, *args):
+    def write(self, orig, *args, **opts):
         if self.printed:
             self.clear()
-        return orig(*args)
+        return orig(*args, **opts)
 
 sharedprog = None