Mercurial > public > mercurial-scm > hg
diff mercurial/patch.py @ 30407: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 | 564b33acc21f |
children | d1901c4c8ec0 |
line wrap: on
line diff
--- a/mercurial/patch.py Thu Sep 29 10:16:34 2016 +0200 +++ b/mercurial/patch.py Sat Nov 12 13:36:17 2016 +0100 @@ -2550,7 +2550,7 @@ addresult() return results -def diffstat(lines, width=80, git=False): +def diffstat(lines, width=80): output = [] stats = diffstatdata(lines) maxname, maxtotal, totaladds, totalremoves, hasbinary = diffstatsum(stats)