changeset 417:45d77d512ac2

FIX: PY3 compat: convert native string in the "amend" description to a byte string
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 05 Sep 2021 16:21:15 +0200
parents 81f1bfebaede
children 83ee547c7e5f
files extensions/timestamps.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/extensions/timestamps.py	Sun Sep 05 16:20:36 2021 +0200
+++ b/extensions/timestamps.py	Sun Sep 05 16:21:15 2021 +0200
@@ -151,7 +151,7 @@
         (b"", b"show", None, _(b"show the contents of the timestamps database")),
         (b'r', b"rev", b"", _(b"the revision to use (default is the working space)"), _(b"REV")),
         (b"", b"tsconfig", b"", _(b"use an alternate configuration file"), _(b"TSCONFIG")),
-        (b"", b"amend", None, _("amend an existing database file instead of generating a fresh one")),
+        (b"", b"amend", None, _(b"amend an existing database file instead of generating a fresh one")),
         (b"", b"all", None, _(b"when importing import all timestamps instead of only the matching ones")),
         (b"", b"destdir", b"", _(b"when restoring timestamps give an alternate base directory for settings timestamps (e.g. an archived directory tree)"), _(b"DESTDIR")),
     ] + cmdutil.walkopts,