diff options
author | David Lehman <dlehman@redhat.com> | 2012-07-17 13:11:15 -0500 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2012-07-18 10:01:00 -0500 |
commit | 209d69e341f6e560b656626f18911848ab90cd19 (patch) | |
tree | 71d7ca44536bd101df373a9ff9e67877b19e17f8 /pyanaconda | |
parent | b0ef5f0c2db2249d78f76f235513ce5393aa3dad (diff) | |
download | anaconda-209d69e341f6e560b656626f18911848ab90cd19.tar.gz anaconda-209d69e341f6e560b656626f18911848ab90cd19.tar.xz anaconda-209d69e341f6e560b656626f18911848ab90cd19.zip |
Set StorageCheck class attrs instead of adding instance attrs.
Diffstat (limited to 'pyanaconda')
-rw-r--r-- | pyanaconda/ui/gui/spokes/storage.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyanaconda/ui/gui/spokes/storage.py b/pyanaconda/ui/gui/spokes/storage.py index 40d77e826..7a156a466 100644 --- a/pyanaconda/ui/gui/spokes/storage.py +++ b/pyanaconda/ui/gui/spokes/storage.py @@ -243,7 +243,8 @@ class StorageChecker(object): def checkStorage(self): communication.send_message(self._mainSpokeClass, _("Checking storage configuration...")) - (self.errors, self.warnings) = self.storage.sanityCheck() + (StorageChecker.errors, + StorageChecker.warnings) = self.storage.sanityCheck() communication.send_ready(self._mainSpokeClass, justUpdate=True) class StorageSpoke(NormalSpoke, StorageChecker): |