Mercurial > public > mercurial-scm > hg
diff hgext/shelve.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 | b573d7ca31c4 |
children | 2e736f01a710 |
line wrap: on
line diff
--- a/hgext/shelve.py Thu Sep 29 10:16:34 2016 +0200 +++ b/hgext/shelve.py Sat Nov 12 13:36:17 2016 +0100 @@ -505,8 +505,7 @@ for chunk, label in patch.difflabel(iter, difflines): ui.write(chunk, label=label) if opts['stat']: - for chunk, label in patch.diffstatui(difflines, width=width, - git=True): + for chunk, label in patch.diffstatui(difflines, width=width): ui.write(chunk, label=label) def singlepatchcmds(ui, repo, pats, opts, subcommand):