From 6647e99ec83e2a934346bb4ca58e93a2e216a831 Mon Sep 17 00:00:00 2001 From: Necoro <> Date: Sun, 20 Jan 2008 01:55:36 +0000 Subject: r680@Devoty: necoro | 2008-01-20 02:53:30 +0100 Fixed flag handling --- portato/gui/gtk/dialogs.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'portato/gui/gtk/dialogs.py') diff --git a/portato/gui/gtk/dialogs.py b/portato/gui/gtk/dialogs.py index 7a1f28d..c26835c 100644 --- a/portato/gui/gtk/dialogs.py +++ b/portato/gui/gtk/dialogs.py @@ -11,6 +11,7 @@ # Written by René 'Necoro' Neumann import gtk +from ...helper import error from gettext import lgettext as _ def queue_not_empty_dialog(): @@ -26,6 +27,7 @@ def io_ex_dialog (io_ex): if io_ex.filename: string = string+": "+io_ex.filename + error(string) dialog = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, string) ret = dialog.run() dialog.destroy() -- cgit v1.2.3-54-g00ecf