Mercurial > public > mercurial-scm > hg-stable
diff mercurial/revset.py @ 29147:ff07da10de4c
devel: fix a typo in a deprecation warning
Credit goes to Sean Farley for spotting it.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Wed, 11 May 2016 09:34:59 +0200 |
parents | b175d9cc3ee8 |
children | f5983805574e |
line wrap: on
line diff
--- a/mercurial/revset.py Wed May 11 09:31:47 2016 +0200 +++ b/mercurial/revset.py Wed May 11 09:34:59 2016 +0200 @@ -333,7 +333,7 @@ # else case should not happen, because all non-func are internal, # ignoring for now. if x[0] == 'func' and x[1][0] == 'symbol' and x[1][1] in symbols: - repo.ui.deprecwarn('revset "%s" use list instead of smartset' + repo.ui.deprecwarn('revset "%s" uses list instead of smartset' % x[1][1], '3.9') return baseset(s)