diff options
author | Donald Stufft <donald@stufft.io> | 2016-01-21 14:43:29 -0500 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-01-21 14:43:29 -0500 |
commit | 3d7361ff2e31472cb69d00150fbdf5a3c9af2a0d (patch) | |
tree | ed3c18ce7b9f669bf381332b37e691b1f407b20a | |
parent | fcbdca80221e921b1a58a7b3f5208d62ff03b067 (diff) | |
download | virtualenv-3d7361ff2e31472cb69d00150fbdf5a3c9af2a0d.tar.gz |
Default to true
-rwxr-xr-x | virtualenv.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/virtualenv.py b/virtualenv.py index 221a649..2b9a266 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -608,6 +608,7 @@ def main(): parser.add_option( "--download", dest="download", + default=True, action="store_true", help="Download preinstalled packages from PyPI.", ) |