Mercurial > public > mercurial-scm > hg-stable
diff mercurial/upgrade.py @ 46207:e2139e071b5c
upgrade: add a missing space in status message
Found while reading the code to refactor.
Differential Revision: https://phab.mercurial-scm.org/D9583
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 14 Dec 2020 16:15:01 +0530 |
parents | 53d083fa1f83 |
children | 083438d6f403 |
line wrap: on
line diff
--- a/mercurial/upgrade.py Wed Dec 30 14:56:34 2020 +0530 +++ b/mercurial/upgrade.py Mon Dec 14 16:15:01 2020 +0530 @@ -225,7 +225,7 @@ ) if not (backup or backuppath is None): ui.status( - _(b'removing old repository content%s\n') % backuppath + _(b'removing old repository content %s\n') % backuppath ) repo.vfs.rmtree(backuppath, forcibly=True) backuppath = None