From 6dd42324277affdbe14a0c5ee8f8367a457bc522 Mon Sep 17 00:00:00 2001 From: oepen Date: Thu, 5 Aug 2010 20:59:43 +0000 Subject: [PATCH] Bugfix: Fixed colliding namespaces git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@247 96b47cad-a561-4643-ad3b-153ac7d7599c --- eID_gui/src/eid/widgets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eID_gui/src/eid/widgets.py b/eID_gui/src/eid/widgets.py index 834bfe7..d12e5c4 100644 --- a/eID_gui/src/eid/widgets.py +++ b/eID_gui/src/eid/widgets.py @@ -7,7 +7,7 @@ except ImportError: sys.exit(1) from eid_gui_globals import AT_CHAT_STRINGS, IMAGES -from windows import MsgBox +import windows class customCheckButton(object): """This class provides a custom version of gtk.CheckButton. @@ -61,5 +61,5 @@ class customCheckButton(object): def _show_info(self, widget=None, data=None): """Show a messagebox containing info about the access right in question""" - help = MsgBox(self.parent, self.helptext, "info") + help = windows.MsgBox(self.parent, self.helptext, "info")