diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/caribou.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/caribou.in b/bin/caribou.in index 9e8e0ae..1c2235c 100644 --- a/bin/caribou.in +++ b/bin/caribou.in @@ -27,7 +27,7 @@ from optparse import OptionParser import gettext import sys -import gtk +from gi.repository import Gtk import os # We can't rely on prefix if we're installed by relocated RPM. Instead, we @@ -67,6 +67,6 @@ if __name__ == "__main__": main.debug = options.debug caribou = main.Caribou() - caribou.window.hide_all() + caribou.window.hide() - gtk.main() + Gtk.main() |