diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-12-09 04:09:58 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-12-09 04:09:58 +0000 |
commit | 56c7865cab3213cf951286576088585f48ae5b5d (patch) | |
tree | cdb3db3797ce4c7a11846de5fc9d091d03765b42 /partRequests.py | |
parent | 2dfabf104014f128de0f2e4bde188bce4cd166b3 (diff) | |
download | anaconda-56c7865cab3213cf951286576088585f48ae5b5d.tar.gz anaconda-56c7865cab3213cf951286576088585f48ae5b5d.tar.xz anaconda-56c7865cab3213cf951286576088585f48ae5b5d.zip |
2004-12-08 Jeremy Katz <katzj@redhat.com>
* partitions.py (Partitions.setFromDisk): Adding as a request
requires more bits, do as a delete (#142304)
(Partitions.getPartialLVMRequests): Check deletes now
* partRequests.py (PartialVolumeGroupRequestSpec): It's not really
a RequestSpec, change accordingly.
Diffstat (limited to 'partRequests.py')
-rw-r--r-- | partRequests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/partRequests.py b/partRequests.py index c42305d41..b2f67cf11 100644 --- a/partRequests.py +++ b/partRequests.py @@ -765,12 +765,12 @@ class VolumeGroupRequestSpec(RequestSpec): return totalspace -class PartialVolumeGroupRequestSpec(RequestSpec): +class PartialVolumeGroupSpec: """Request to represent partial volume group devices.""" # note, these are just used as placeholders so we don't collide on names def __init__(self, vgname = None): - """Create a new PartialVolumeGroupRequestSpec object. + """Create a new PartialVolumeGroupSpec object. vgname is the name of the volume group. """ |