annotate hgext/__init__.py @ 1753:9fd15f27c91c stable

evolve: suggest "hg update -C .", including '.', to abort evolve The user will probably not also want to change commit when they abort evolve, like "hg update -C" (without the '.') would do. Note that we already do recommend aborting by using "hg update -C ." in another place.
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 28 Oct 2016 15:04:40 -0700
parents 5ef77a1d975c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1619
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
1 from __future__ import absolute_import
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
2 import pkgutil
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
3 __path__ = pkgutil.extend_path(__path__, __name__)
5ef77a1d975c hgext: turn 'hgext' into a namespace package
Pierre-Yves David <pierre-yves.david@fb.com>
parents: 519
diff changeset
4