summaryrefslogtreecommitdiffstats
path: root/urlinstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'urlinstall.py')
-rw-r--r--urlinstall.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/urlinstall.py b/urlinstall.py
index ad388f29b..688fecda8 100644
--- a/urlinstall.py
+++ b/urlinstall.py
@@ -35,7 +35,7 @@ FILENAME = 1000000
DISCNUM = 1000002
def urlretrieve(location, file):
- """Downloads from location and saves to file."
+ """Downloads from location and saves to file."""
url = urllib2.urlopen(location)
f = open(file, 'w+')
@@ -171,4 +171,3 @@ class UrlInstallMethod(InstallMethod):
else:
self.multiDiscs = 0
self.pkgUrl = self.baseUrl
-