summaryrefslogtreecommitdiff
path: root/grc/checks.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/checks.py')
-rwxr-xr-xgrc/checks.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/grc/checks.py b/grc/checks.py
index 40a0b2b270..4b5ce9d316 100755
--- a/grc/checks.py
+++ b/grc/checks.py
@@ -36,11 +36,11 @@ Is the library path environment variable set correctly?
def die(error, message):
msg = "{0}\n\n({1})".format(message, error)
try:
- import gtk
- d = gtk.MessageDialog(
- type=gtk.MESSAGE_ERROR,
- buttons=gtk.BUTTONS_CLOSE,
- message_format=msg,
+ from gi.repository import Gtk
+ d = Gtk.MessageDialog(
+ message_type=Gtk.MessageType.ERROR,
+ buttons=Gtk.ButtonsType.CLOSE,
+ text=msg,
)
d.set_title(type(error).__name__)
d.run()