diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-13 00:46:40 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-13 00:46:40 +0000 |
commit | fe970ec2d9b719fd0893b9ce44edd4472dfd13f3 (patch) | |
tree | e11f8289e4c4ef2968d2dc8d150a54afe4d16e4c /bootloader.py | |
parent | 8c7791e520cff0046592f74094ab2ed24b6ef9d1 (diff) | |
download | anaconda-fe970ec2d9b719fd0893b9ce44edd4472dfd13f3.tar.gz anaconda-fe970ec2d9b719fd0893b9ce44edd4472dfd13f3.tar.xz anaconda-fe970ec2d9b719fd0893b9ce44edd4472dfd13f3.zip |
define get in base class -- for some reason non-ia32 bootloader UIs are calling this
Diffstat (limited to 'bootloader.py')
-rw-r--r-- | bootloader.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bootloader.py b/bootloader.py index 3ac9377e9..1bea37026 100644 --- a/bootloader.py +++ b/bootloader.py @@ -148,6 +148,9 @@ class bootloaderInfo: def setPassword(self, val, isCrypted = 1): pass + def getPassword(self): + pass + def getDevice(self): return self.device |