M hgext3rd/confman/__init__.py +1 -1
@@ 3,7 3,7 @@
The full documentation is available online at https://hg.sr.ht/~auc/confman
or in the REAMDE.md file.
"""
-testedwith = '4.6 4.7 4.8 5.0 5.1 5.2 5.3 5.4 5.5 5.6'
+testedwith = '4.6 4.7 4.8 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7'
import os.path as osp
from mercurial import extensions
M hgext3rd/confman/configuration.py +1 -1
@@ 150,7 150,7 @@ class configurationmanager(object):
prefix, replacement = prefix.strip(), replacement.strip()
urimap[prefix] = replacement
except:
- raise error.ParseError
+ raise error.ParseError('bad uri map')
return urimap
except error.ParseError:
self.ui.warn('the %r uri map file looks malformed\n' % mapfilepath)