diff options
author | necoro <> | 2006-10-27 13:58:52 +0000 |
---|---|---|
committer | necoro <> | 2006-10-27 13:58:52 +0000 |
commit | 3384091af579dbafdc366753cf846e3e63c61f7b (patch) | |
tree | 680428f2043735763f51c38f4e891ae79301b2ea /geneticone/gui/__init__.py | |
parent | f8bcb199cd5569dba9039c0286456a2d651a22a8 (diff) | |
download | portato-3384091af579dbafdc366753cf846e3e63c61f7b.tar.gz portato-3384091af579dbafdc366753cf846e3e63c61f7b.tar.bz2 portato-3384091af579dbafdc366753cf846e3e63c61f7b.zip |
Moved gtk-specific stuff to an extra subdir to make it more flexible for qt
Diffstat (limited to '')
-rw-r--r-- | geneticone/gui/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/geneticone/gui/__init__.py b/geneticone/gui/__init__.py index d5e75c3..25123c8 100644 --- a/geneticone/gui/__init__.py +++ b/geneticone/gui/__init__.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # # File: geneticone/gui/__init__.py # This file is part of the Genetic/One-Project, a graphical portage-frontend. @@ -9,4 +10,5 @@ # # Written by René 'Necoro' Neumann <necoro@necoro.net> -from windows import * +import gtk +from gtk import * |