diff mercurial/cmdutil.py @ 30417:e1677cc29da6

patch: remove unused git parameter from patch.diffstat() Since 628a4a9e411d the parameter is not used anymore.
author Henning Schild <henning@hennsch.de>
date Sat, 12 Nov 2016 13:36:17 +0100
parents 11b8b740d54a
children 39d13b8c101d
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Thu Sep 29 10:16:34 2016 +0200
+++ b/mercurial/cmdutil.py	Sat Nov 12 13:36:17 2016 +0100
@@ -1202,8 +1202,7 @@
         chunks = patch.diff(repo, node1, node2, match, changes, diffopts,
                             prefix=prefix, relroot=relroot)
         for chunk, label in patch.diffstatui(util.iterlines(chunks),
-                                             width=width,
-                                             git=diffopts.git):
+                                             width=width):
             write(chunk, label=label)
     else:
         for chunk, label in patch.diffui(repo, node1, node2, match,