Skip to content
Snippets Groups Projects
Commit f75216aade90 authored by Marcin Kasperski's avatar Marcin Kasperski
Browse files

readme, hgignore, warning tweaks

parent afa2f312fc7b
Branches branch/stable
No related tags found
No related merge requests found
syntax: regexp
\.pyc$
\.pyo$
~$
^\.\#
^\.(project|pydevproject)$
^\.settings/
^build/
^dist/
\.egg-info/
Distribution:
- check version in setup.py, and hg tag
- push to bitbucket
- publish to PyPi
python setup.py build dist upload
- maybe update mercurial wiki
- maybe announce on mercurial lists
......@@ -194,7 +194,7 @@
"""Process single config entry in [path_pattern] section"""
match = self._re_cfg_key.search(cfg_key)
if not match:
ui.warn(_("Invalid entry in [path_pattern] section: %s. Expected <some-alias>.local or <some-alias>.remote\n" % cfg_key))
ui.warn(_("Invalid key in [path_pattern] section: %s. Expected <some-alias>.local or <some-alias>.remote\n" % cfg_key))
return
alias, side_name = match.group(1), match.group(2)
if alias not in self.patterns:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment