Mercurial > public > mercurial-scm > hg-stable
diff mercurial/chgserver.py @ 43665:975e517451a6
py3: replace "%r" by"'%s'% for py3-compatible (and clearer) quoting in chg
Differential Revision: https://phab.mercurial-scm.org/D7375
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 28 Aug 2019 17:43:56 -0700 |
parents | 9f70512ae2cf |
children | 5e0f6451e2d2 |
line wrap: on
line diff
--- a/mercurial/chgserver.py Tue Oct 22 23:21:26 2019 -0700 +++ b/mercurial/chgserver.py Wed Aug 28 17:43:56 2019 -0700 @@ -505,7 +505,7 @@ path = self._readstr() if not path: return - self.ui.log(b'chgserver', b'chdir to %r\n', path) + self.ui.log(b'chgserver', b"chdir to '%s'\n", path) os.chdir(path) def setumask(self):