Submitter | phabricator |
---|---|
Date | July 27, 2017, 7:51 p.m. |
Message ID | <differential-rev-PHID-DREV-6p2nb3e2kqbfhx36lszn-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/22567/ |
State | Superseded, archived |
Headers | show |
Comments
Patch
diff --git a/contrib/phabricator.py b/contrib/phabricator.py --- a/contrib/phabricator.py +++ b/contrib/phabricator.py @@ -560,7 +560,8 @@ if k in meta: header += '# %s %s\n' % (_metanamemap[k], meta[k]) - write(('%s%s\n%s') % (header, desc, body)) + content = '%s%s\n%s' % (header, desc, body) + write(encoding.unitolocal(content)) @command('phabread', [('', 'stack', False, _('read dependencies'))],