From 1071f5cf6167c874ce972bd57a884e3a3db445a0 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 4 Nov 2002 16:21:35 +0000 Subject: oops --- urlinstall.py | 3 +-- 1 file changed, 1 insertion(+), 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 - -- cgit