diff options
author | Necoro <> | 2008-01-18 19:24:38 +0000 |
---|---|---|
committer | Necoro <> | 2008-01-18 19:24:38 +0000 |
commit | e49c33d6114ddc8051c349aa325872bd7840289b (patch) | |
tree | e02628a2e9bcbb9011a3390962819c8c6ecb1e51 /portato/gui/gtk/wrapper.py | |
parent | 34cd02955f69251e9484803d8ee4912b23e1e99b (diff) | |
download | portato-e49c33d6114ddc8051c349aa325872bd7840289b.tar.gz portato-e49c33d6114ddc8051c349aa325872bd7840289b.tar.bz2 portato-e49c33d6114ddc8051c349aa325872bd7840289b.zip |
r661@Devoty: necoro | 2008-01-18 14:16:59 +0100
First support for interactive emerges
r662@Devoty: necoro | 2008-01-18 20:22:58 +0100
Now finished interactive emerges
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gtk/wrapper.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/portato/gui/gtk/wrapper.py b/portato/gui/gtk/wrapper.py index cadec6a..e601f5d 100644 --- a/portato/gui/gtk/wrapper.py +++ b/portato/gui/gtk/wrapper.py @@ -3,7 +3,7 @@ # File: portato/gui/gtk/wrapper.py # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006 René 'Necoro' Neumann +# Copyright (C) 2006-2008 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. @@ -12,9 +12,10 @@ from __future__ import absolute_import +import vte from gettext import lgettext as _ from ..wrapper import Tree, Console -import vte +from ...helper import debug class GtkTree (Tree): """The implementation of the abstract tree.""" |