diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-10 21:52:44 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-17 19:55:17 +0100 |
commit | d905f0d803574acd158183135e113b807bd7c878 (patch) | |
tree | 63bf6c0bc3ea46e779f3545b42562545a49df617 /grc/gui/Dialogs.py | |
parent | 01afb64bda2fb4c93b0a4e9d3e37e7239ba47f26 (diff) |
grc-refactor: move Messages to core
Diffstat (limited to 'grc/gui/Dialogs.py')
-rw-r--r-- | grc/gui/Dialogs.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/grc/gui/Dialogs.py b/grc/gui/Dialogs.py index f2941250a8..7d55e1b2e7 100644 --- a/grc/gui/Dialogs.py +++ b/grc/gui/Dialogs.py @@ -17,15 +17,13 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -import pygtk -pygtk.require('2.0') import gtk import sys from distutils.spawn import find_executable - -from . import Utils, Actions, Constants, Messages +from . import Utils, Actions, Constants +from ..core import Messages class SimpleTextDisplay(gtk.TextView): |