diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-02-12 00:10:43 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-02-12 00:10:43 +0000 |
commit | 167a3cb1ff2fee482d0737979ca7e0eca78f7d82 (patch) | |
tree | fa6bad043ff7b0b62b221dd07f3674762e4d4888 /instdata.py | |
parent | 54ce86670d35a9e6974e7e77fa25679c3ebecf80 (diff) | |
download | anaconda-167a3cb1ff2fee482d0737979ca7e0eca78f7d82.tar.gz anaconda-167a3cb1ff2fee482d0737979ca7e0eca78f7d82.tar.xz anaconda-167a3cb1ff2fee482d0737979ca7e0eca78f7d82.zip |
diskset moves to partedUtils
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 5fa793ca2..9cfa4e6a2 100644 --- a/instdata.py +++ b/instdata.py @@ -23,6 +23,7 @@ import users import fsset import bootloader import partitioning +import partedUtils from flags import * from simpleconfig import SimpleConfigFile @@ -62,7 +63,7 @@ class InstallData: self.upgrade = Boolean() # XXX move fsset and/or diskset into Partitions object? self.fsset.reset() - self.diskset = partitioning.DiskSet() + self.diskset = partedUtils.DiskSet() self.partitions = partitioning.Partitions() self.bootloader = bootloader.getBootloader() self.dependencies = [] |