Submitter | phabricator |
---|---|
Date | Feb. 24, 2018, 10:43 a.m. |
Message ID | <fe48c021edb36979a2accccfcfd05587@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28311/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -855,7 +855,7 @@ files=files, eolmode=None) return (True, list(files), fuzz) except Exception as inst: - self.ui.note(str(inst) + '\n') + self.ui.note(util.forcebytestr(inst) + '\n') if not self.ui.verbose: self.ui.warn(_("patch failed, unable to continue (try -v)\n")) self.ui.traceback()