changeset 400:ef0c7a0cacab

Fixed wrong import lines for pychan in two editor files.
author cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 28 Jan 2010 21:50:12 +0000
parents d98e398d3057
children ac7806c46b94
files tools/editor/scripts/gui/error.py tools/editor/scripts/gui/selection.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/editor/scripts/gui/error.py	Thu Jan 28 03:26:29 2010 +0000
+++ b/tools/editor/scripts/gui/error.py	Thu Jan 28 21:50:12 2010 +0000
@@ -21,7 +21,7 @@
 #  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 # ####################################################################
 
-import fife.extensions.pychan
+from fife.extensions import pychan
 import fife.extensions.pychan.widgets as widgets
 
 class ErrorDialog(object):
--- a/tools/editor/scripts/gui/selection.py	Thu Jan 28 03:26:29 2010 +0000
+++ b/tools/editor/scripts/gui/selection.py	Thu Jan 28 21:50:12 2010 +0000
@@ -21,7 +21,7 @@
 #  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 # ####################################################################
 
-import fife.extensions.pychan
+from fife.extensions import pychan
 import fife.extensions.pychan.widgets as widgets
 
 class SelectionDialog(object):