diff options
Diffstat (limited to 'instdata.py')
| -rw-r--r-- | instdata.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instdata.py b/instdata.py index e75f448e8..516f0c23a 100644 --- a/instdata.py +++ b/instdata.py @@ -28,6 +28,7 @@ import partitions import partedUtils import hdrlist import zfcp +import urllib from flags import * from constants import * @@ -131,7 +132,7 @@ class InstallData: # figure out the install method and write out a line if self.methodstr.startswith('ftp://') or self.methodstr.startswith('http://'): - f.write("url --url %s\n" % (self.methodstr,)) + f.write("url --url %s\n" % urllib.unquote(self.methodstr)) elif self.methodstr.startswith('cdrom://'): f.write("cdrom\n") elif self.methodstr.startswith('hd://'): |
