summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2008-02-20 12:21:19 -0600
committerDavid Lehman <dlehman@redhat.com>2008-02-20 12:28:06 -0600
commit801ce9d275f7e404924f8f118d7724d554ae5d4f (patch)
tree1584026f22d2c384a950415deee427ceeb6d37a2 /partedUtils.py
parent42f95909a18d2a2ae64109ccba8fcb2a681dd555 (diff)
downloadanaconda-801ce9d275f7e404924f8f118d7724d554ae5d4f.tar.gz
anaconda-801ce9d275f7e404924f8f118d7724d554ae5d4f.tar.xz
anaconda-801ce9d275f7e404924f8f118d7724d554ae5d4f.zip
Fix traceback on test mount in findExistingRootPartitions.
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 979eaacc9..78145d6ff 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -870,7 +870,7 @@ class DiskSet:
# because that'll throw up a useless error message.
if not protected or theDev not in protected:
try:
- isys.mount(theDev, self.anaconda.rootPath, part.fs_type.name)
+ isys.mount(theDev, self.anaconda.rootPath, fstype)
checkRoot = self.anaconda.rootPath
except SystemError, (errno, msg):
part = disk.next_partition(part)