We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb4f9de commit 00af0c6Copy full SHA for 00af0c6
vcs_repo_mgr/__init__.py
@@ -104,7 +104,7 @@
104
)
105
106
# Semi-standard module versioning.
107
-__version__ = '0.27.1'
+__version__ = '0.27.2'
108
109
USER_CONFIG_FILE = os.path.expanduser('~/.vcs-repo-mgr.ini')
110
"""The absolute pathname of the user-specific configuration file (a string)."""
@@ -1409,7 +1409,7 @@ class HgRepo(Repository):
1409
# the `--quiet' option. This explains why I've decided to silence the
1410
# standard error stream (though I feel I may regret this later).
1411
commit_command = compact('''
1412
- hg -R {local} remove --after 2>/dev/null &&
+ hg -R {local} remove --after 2>/dev/null;
1413
hg -R {local} commit --user={author_combined} --message={message}
1414
''')
1415
export_command = 'hg -R {local} archive --rev={revision} {directory}'
0 commit comments