# HG changeset patch # User Franz Glasner # Date 1565247775 -7200 # Node ID 8ac53bee87ffd7373ff36ac37b574e459806c9dc # Parent 84cdf819c7a46e313757fa22c7658adbab470f8b FIX: PY3 compat: mix of bytes and Unicode strings not allowed diff -r 84cdf819c7a4 -r 8ac53bee87ff extensions/timestamps.py --- 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]