summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-01-16 22:17:15 +0000
committerErik Troan <ewt@redhat.com>2001-01-16 22:17:15 +0000
commit8b2b19d8a2fee399c2cc95141207a27863a1c896 (patch)
tree20614ed634685955cd0246d7088300956551b746 /gui.py
parentea4a2c4ea59e2397825f05a0bc939affafef764b (diff)
downloadanaconda-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-xgui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index f0deaba2d..8baa2cbc3 100755
--- a/gui.py
+++ b/gui.py
@@ -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):