diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-05-15 18:00:11 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-05-15 18:00:11 +0200 |
commit | 225f0d2297584adbdea11466486d06b909ec6ec3 (patch) | |
tree | 608f46d21eef7a5e125f89f6b70c601e7967533e /portato/gui/slots.py | |
parent | 824e812a44851ec1963d3347f588821477e9937c (diff) | |
download | portato-225f0d2297584adbdea11466486d06b909ec6ec3.tar.gz portato-225f0d2297584adbdea11466486d06b909ec6ec3.tar.bz2 portato-225f0d2297584adbdea11466486d06b909ec6ec3.zip |
Fix import
Diffstat (limited to '')
-rw-r--r-- | portato/gui/slots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/slots.py b/portato/gui/slots.py index 2ad4c01..8f523b8 100644 --- a/portato/gui/slots.py +++ b/portato/gui/slots.py @@ -13,7 +13,7 @@ from __future__ import absolute_import, with_statement import gtk -from ...plugin import WidgetSlot # other modules might import WidgetSlot from here +from ..plugin import WidgetSlot # other modules might import WidgetSlot from here class PluginMenuSlot (WidgetSlot): |