mercurial/patch.py
changeset 5033 1b07668b8cc3
parent 4965 4106dde15aed
child 5035 a675f6d5d069
--- a/mercurial/patch.py	Mon Jul 30 20:48:50 2007 -0700
+++ b/mercurial/patch.py	Mon Jul 30 20:49:08 2007 -0700
@@ -1057,7 +1057,7 @@
 
     return files
 
-def b85diff(fp, to, tn):
+def b85diff(to, tn):
     '''print base85-encoded binary diff'''
     def gitindex(text):
         if not text:
@@ -1244,7 +1244,7 @@
             header.insert(0, 'diff --git a/%s b/%s\n' % (a, b))
         if dodiff:
             if dodiff == 'binary':
-                text = b85diff(fp, to, tn)
+                text = b85diff(to, tn)
             else:
                 text = mdiff.unidiff(to, date1,
                                     # ctx2 date may be dynamic