summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2010-01-05 15:40:09 -0500
committerChris Lumens <clumens@redhat.com>2010-01-05 15:43:51 -0500
commitff71c2c84b3f0ca9e609a7e390254e0e981060b3 (patch)
treeed5df3d30569b00d915ebe921182b4bf86f8273f /isys
parentbbc4a43d115b17d3c81b733d3369feb62d5b116d (diff)
downloadanaconda-ff71c2c84b3f0ca9e609a7e390254e0e981060b3.tar.gz
anaconda-ff71c2c84b3f0ca9e609a7e390254e0e981060b3.tar.xz
anaconda-ff71c2c84b3f0ca9e609a7e390254e0e981060b3.zip
opts should always be treated as a list inside isys.mount().
Diffstat (limited to 'isys')
-rwxr-xr-xisys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 44f9d3dd9..449adedb8 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -125,7 +125,7 @@ def mount(device, location, fstype = "ext2", readOnly = False,
flags = None
location = os.path.normpath(location)
if not options:
- opts = "defaults"
+ opts = ["defaults"]
else:
opts = options.split(",")