diff options
author | Erik Troan <ewt@redhat.com> | 2001-01-16 22:17:15 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-01-16 22:17:15 +0000 |
commit | 8b2b19d8a2fee399c2cc95141207a27863a1c896 (patch) | |
tree | 20614ed634685955cd0246d7088300956551b746 /gui.py | |
parent | ea4a2c4ea59e2397825f05a0bc939affafef764b (diff) | |
download | anaconda-8b2b19d8a2fee399c2cc95141207a27863a1c896.tar.gz anaconda-8b2b19d8a2fee399c2cc95141207a27863a1c896.tar.xz anaconda-8b2b19d8a2fee399c2cc95141207a27863a1c896.zip |
type parameter to messageWindow() needs to be optional
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -293,7 +293,7 @@ class InstallInterface: self.ppw.setSizes (total, totalSize) return self.ppw - def messageWindow(self, title, text, type): + def messageWindow(self, title, text, type = "ok"): return MessageWindow (title, text, type) def exceptionWindow(self, title, text): |