diff -r 9b99f158348a -r 7d17794f08a9 hgext/mq.py --- 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)