hgext/patchbomb.py
changeset 7874 d812029cda85
parent 7807 bd8f44638847
child 7889 5ac1a72e5b74
--- a/hgext/patchbomb.py	Mon Mar 23 13:12:07 2009 +0100
+++ b/hgext/patchbomb.py	Mon Mar 23 13:13:02 2009 +0100
@@ -230,8 +230,8 @@
     def getpatches(revs):
         for r in cmdutil.revrange(repo, revs):
             output = cStringIO.StringIO()
-            p = patch.export(repo, [r], fp=output,
-                             opts=patch.diffopts(ui, opts))
+            patch.export(repo, [r], fp=output,
+                         opts=patch.diffopts(ui, opts))
             yield output.getvalue().split('\n')
 
     def getbundle(dest):