Skip to content

Commit 00af0c6

Browse files
committed
Bug fix for previous commit (`hg remove --after' return code)
1 parent eb4f9de commit 00af0c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vcs_repo_mgr/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
)
105105

106106
# Semi-standard module versioning.
107-
__version__ = '0.27.1'
107+
__version__ = '0.27.2'
108108

109109
USER_CONFIG_FILE = os.path.expanduser('~/.vcs-repo-mgr.ini')
110110
"""The absolute pathname of the user-specific configuration file (a string)."""
@@ -1409,7 +1409,7 @@ class HgRepo(Repository):
14091409
# the `--quiet' option. This explains why I've decided to silence the
14101410
# standard error stream (though I feel I may regret this later).
14111411
commit_command = compact('''
1412-
hg -R {local} remove --after 2>/dev/null &&
1412+
hg -R {local} remove --after 2>/dev/null;
14131413
hg -R {local} commit --user={author_combined} --message={message}
14141414
''')
14151415
export_command = 'hg -R {local} archive --rev={revision} {directory}'

0 commit comments

Comments
 (0)