Mercurial > public > mercurial-scm > hg
diff hgext/patchbomb.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 | d5883fd055c6 |
children | a150173da1c1 |
line wrap: on
line diff
--- a/hgext/patchbomb.py Thu Sep 29 10:16:34 2016 +0200 +++ b/hgext/patchbomb.py Sat Nov 12 13:36:17 2016 +0100 @@ -166,7 +166,7 @@ while patchlines and not patchlines[0].strip(): patchlines.pop(0) - ds = patch.diffstat(patchlines, git=opts.get('git')) + ds = patch.diffstat(patchlines) if opts.get('diffstat'): body += ds + '\n\n'