summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-10-01 11:26:34 -0400
committerChris Lumens <clumens@redhat.com>2008-10-01 11:26:34 -0400
commit8753ff3fe2989aae5e13a9dd93892b36d42dec0a (patch)
tree162f9b6625a097f41435eff130727d86aa546082 /instdata.py
parent21b183b5f9277e854dc131a2f546a7e119500475 (diff)
downloadanaconda-8753ff3fe2989aae5e13a9dd93892b36d42dec0a.tar.gz
anaconda-8753ff3fe2989aae5e13a9dd93892b36d42dec0a.tar.xz
anaconda-8753ff3fe2989aae5e13a9dd93892b36d42dec0a.zip
It helps to specify what the method string should be split on (#464855).
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instdata.py b/instdata.py
index bc84b7c02..fc8f0f3d4 100644
--- a/instdata.py
+++ b/instdata.py
@@ -260,7 +260,7 @@ class InstallData:
if m.count(":") == 3:
(part, fs, dir) = string.split(m[3:], ":")
else:
- (part, dir) = string.split(m[3:])
+ (part, dir) = string.split(m[3:], ":")
f.write("harddrive --partition=%s --dir=%s\n" % (part, dir))
elif m.startswith("nfs:"):