Mercurial > hg-stable
changeset 40813:e8c992d56465
match: fix an unaligned (but harmless) indent
Differential Revision: https://phab.mercurial-scm.org/D5349
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Sun, 02 Dec 2018 13:09:43 -0800 |
parents | 69bd3176da7c |
children | 1e019f45fa88 |
files | mercurial/match.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/match.py Thu Nov 22 17:41:10 2018 +0100 +++ b/mercurial/match.py Sun Dec 02 13:09:43 2018 -0800 @@ -1237,7 +1237,7 @@ except re.error: if s: raise error.Abort(_("%s: invalid pattern (%s): %s") % - (s, k, p)) + (s, k, p)) else: raise error.Abort(_("invalid pattern (%s): %s") % (k, p)) raise error.Abort(_("invalid pattern"))