# HG changeset patch # User Idan Kamara # Date 1305914685 -10800 # Node ID 0368ad7963bef9857d0c493d0531202da0fd5a1f # Parent 170747a3e13958da9ee63ec88354ae052c35672d patchbomb: pass --git argument to diffstat diff -r 170747a3e139 -r 0368ad7963be hgext/patchbomb.py --- a/hgext/patchbomb.py Fri May 20 21:20:24 2011 +0300 +++ b/hgext/patchbomb.py Fri May 20 21:04:45 2011 +0300 @@ -106,7 +106,7 @@ while patchlines and not patchlines[0].strip(): patchlines.pop(0) - ds = patch.diffstat(patchlines) + ds = patch.diffstat(patchlines, git=opts.get('git')) if opts.get('diffstat'): body += ds + '\n\n'