diff options
author | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-08-22 03:28:27 +0000 |
---|---|---|
committer | pje <pje@6015fed2-1504-0410-9fe1-9d1591cc4771> | 2005-08-22 03:28:27 +0000 |
commit | 1e90ff069b6416b579bcdfd1566ae093f221c072 (patch) | |
tree | 4cf731bcd44fefb98d7d6ffd77d331c5171a3707 /ez_setup.py | |
parent | e397a8e10d9d454c2ad8b9a7460501b5b91c4860 (diff) | |
download | python-setuptools-1e90ff069b6416b579bcdfd1566ae093f221c072.tar.gz |
More documentation enhancements.
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41222 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'ez_setup.py')
-rwxr-xr-x | ez_setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index 161dbcc..d6786c1 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -109,8 +109,7 @@ you may need to enable firewall access for this script first. I will start the download in %d seconds. ---------------------------------------------------------------------------""", version, download_base, delay - ) - from time import sleep; sleep(delay) + ); from time import sleep; sleep(delay) log.warn("Downloading %s", url) src = urllib2.urlopen(url) # Read/write all in one block, so we don't create a corrupt file |