changeset 9642 | 7d17794f08a9 |
parent 9640 | 9e76232fbfbe |
child 9725 | 3f522d2fa633 |
--- a/hgext/mq.py Sun Oct 25 02:52:36 2009 +0200 +++ b/hgext/mq.py Sun Oct 25 02:53:33 2009 +0200 @@ -429,7 +429,8 @@ write = fp is None and repo.ui.write or fp.write if stat: width = self.ui.interactive() and util.termwidth() or 80 - write(patch.diffstat(util.iterlines(chunks), width=width)) + write(patch.diffstat(util.iterlines(chunks), width=width, + git=self.diffopts().git)) else: for chunk in chunks: write(chunk)