Submitter | phabricator |
---|---|
Date | May 19, 2018, 2:37 a.m. |
Message ID | <a0ec331acbb62e7a624525da2ec87feb@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/31671/ |
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 @@ -492,7 +492,8 @@ n, name = entry yield statusentry(bin(n), name) elif l.strip(): - self.ui.warn(_('malformated mq status line: %s\n') % entry) + self.ui.warn(_('malformated mq status line: %s\n') % + stringutil.pprint(entry)) # else we ignore empty lines try: lines = self.opener.read(self.statuspath).splitlines()