diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-25 18:25:56 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-25 18:25:56 +0000 |
commit | 2914b8a92510da83f099a53b60255462b95f1a1d (patch) | |
tree | 4fbb05325d80bd16bbe89cff3bf737da5442323f /gui.py | |
parent | fa6109b02db910bc90065ada31f8137354de0b80 (diff) | |
download | anaconda-2914b8a92510da83f099a53b60255462b95f1a1d.tar.gz anaconda-2914b8a92510da83f099a53b60255462b95f1a1d.tar.xz anaconda-2914b8a92510da83f099a53b60255462b95f1a1d.zip |
fix import statement
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -21,7 +21,7 @@ import sys import parted import gtk import htmlbuffer -import rpm +import rpm404 as rpm from language import expandLangs from splashscreen import splashScreenPop from flags import flags @@ -407,6 +407,8 @@ class MessageWindow: tbutton = "gtk-cancel" else: tbutton = button + + print "adding button ",tbutton widget = dialog.add_button(tbutton, rid) rid = rid + 1 |