Submitter | Yuya Nishihara |
---|---|
Date | Oct. 4, 2015, 6:08 a.m. |
Message ID | <e22e5ec34357049d2da1.1443938883@mimosa> |
Download | mbox | patch |
Permalink | /patch/10768/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -994,7 +994,7 @@ class ui(object): """issue a developer warning message""" msg = 'devel-warn: ' + msg if self.tracebackflag: - util.debugstacktrace(msg, 2) + util.debugstacktrace(msg, 2, self.ferr, self.fout) else: curframe = inspect.currentframe() calframe = inspect.getouterframes(curframe, 2)