# HG changeset patch # User cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 # Date 1264715412 0 # Node ID ef0c7a0cacab45fa9398a84db35f001a0c679da2 # Parent d98e398d3057f207dba61ade5195dba90e4cdaf0 Fixed wrong import lines for pychan in two editor files. diff -r d98e398d3057 -r ef0c7a0cacab tools/editor/scripts/gui/error.py --- 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): diff -r d98e398d3057 -r ef0c7a0cacab tools/editor/scripts/gui/selection.py --- 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):