diff options
author | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:34 -0500 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:34 -0500 |
commit | 2fd5f65f464ae6da8f5d5da0980c64b101a71957 (patch) | |
tree | 10451ee731aa38b95467e85ad324d8bf48ddb8ea /virtualenv.py | |
parent | 4ac44d2a1508e86d78e06fa158373e723f3b4dcb (diff) | |
parent | 684d14a8bd7497ff6bbea5328b96b1dab2b4c9a4 (diff) | |
download | virtualenv-14.0.1.tar.gz |
Merge branch 'develop'14.0.1
Diffstat (limited to 'virtualenv.py')
-rwxr-xr-x | virtualenv.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/virtualenv.py b/virtualenv.py index 4f5b119..c4f025a 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -33,7 +33,7 @@ try: except ImportError: import configparser as ConfigParser -__version__ = "14.0.0" +__version__ = "14.0.1" virtualenv_version = __version__ # legacy if sys.version_info < (2, 6): @@ -608,6 +608,7 @@ def main(): parser.add_option( "--download", dest="download", + default=True, action="store_true", help="Download preinstalled packages from PyPI.", ) |