summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorJoel Granados Moreno <jgranado@redhat.com>2009-04-16 11:41:29 +0200
committerJoel Granados Moreno <jgranado@redhat.com>2009-04-16 11:41:29 +0200
commit88d78c7a337736bfe6b45ff96084d7b8dea66702 (patch)
tree8f6f4a8b6c854387b6164410970b27bf2d4f57f6 /storage/__init__.py
parent29a78c55295af2051bcce70f1eefdcac04c9aae7 (diff)
downloadanaconda-88d78c7a337736bfe6b45ff96084d7b8dea66702.tar.gz
anaconda-88d78c7a337736bfe6b45ff96084d7b8dea66702.tar.xz
anaconda-88d78c7a337736bfe6b45ff96084d7b8dea66702.zip
Fix typo.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 5deb6eea1..d6b73303a 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -470,7 +470,7 @@ class Storage(object):
elif part.partedPartition.active and \
not part.partedPartition.getFlag(parted.PARTITION_RAID) and \
not part.partedPartition.getFlag(parted.PARTITION_LVM) and \
- part.format.mountable:
+ part.format is not None and part.format.mountable:
dests.append([part.path, part.name])
return dests