1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

fix for ticket 21 (mercurial update to rev "default" breaks)

This commit is contained in:
Carl Meyer 2009-03-21 16:12:33 -04:00
parent 3986f66d0b
commit 11f5eadb21

2
pip.py
View file

@ -3070,7 +3070,7 @@ class Mercurial(VersionControl):
rev_options = [rev]
rev_display = ' (to revision %s)' % rev
else:
rev_options = ['default']
rev_options = []
rev_display = ''
clone = True
if os.path.exists(os.path.join(dest, '.hg')):