hgext/patchbomb.py
changeset 10611 e764f24a45ee
parent 10365 d757bc0c7865
child 10734 7a0502a6f9a1
--- a/hgext/patchbomb.py	Mon Mar 08 11:12:48 2010 -0600
+++ b/hgext/patchbomb.py	Mon Mar 08 19:43:24 2010 +0100
@@ -249,7 +249,7 @@
     def getpatches(revs):
         for r in cmdutil.revrange(repo, revs):
             output = cStringIO.StringIO()
-            patch.export(repo, [r], fp=output,
+            cmdutil.export(repo, [r], fp=output,
                          opts=patch.diffopts(ui, opts))
             yield output.getvalue().split('\n')