Mercurial > hgrepos > DevTools > mercurial-extensions
changeset 398:8ac53bee87ff
FIX: PY3 compat: mix of bytes and Unicode strings not allowed
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Thu, 08 Aug 2019 09:02:55 +0200 |
| parents | 84cdf819c7a4 |
| children | 22b749f7ced5 |
| files | extensions/timestamps.py |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/extensions/timestamps.py Tue Aug 06 01:14:41 2019 +0200 +++ b/extensions/timestamps.py Thu Aug 08 09:02:55 2019 +0200 @@ -257,7 +257,8 @@ # cannot amend and/or leave alone # if match is None: - self.ui.status(_("timestamps: handling skipped: no `match' instance given in commit\n")) + self.ui.status(_(b"timestamps: handling skipped:" + b"no `match' instance given in commit\n")) return None self._tss_ensure_vars() wctx = self[None]
