dabo Commit Revision 2215 Date: 2006-06-15 10:16:10 -0700 (Thu, 15 Jun 2006) Author: ed
Changed: U trunk/dabo/__init__.py U trunk/dabo/lib/xmltodict.py Log: Added a missing import statement to xmltodict. Fixed the order of attribute declaration in __init__.py. Diff: Modified: trunk/dabo/__init__.py =================================================================== --- trunk/dabo/__init__.py 2006-06-15 16:05:37 UTC (rev 2214) +++ trunk/dabo/__init__.py 2006-06-15 17:16:10 UTC (rev 2215) @@ -95,6 +95,9 @@ # Import global settings (do this first, as other imports may rely on it): from settings import * +# dApp will change the following values upon its __init__: +dAppRef = None + # Instantiate the logger object, which will send messages to user-overridable # locations. Do this before any other imports. import sys @@ -106,9 +109,6 @@ errorLog.Caption = "Dabo Error Log" errorLog.LogObject = sys.stderr -from dApp import dApp -from dPref import dPref - from __version__ import version import dColors import dEvents @@ -117,5 +117,6 @@ import pdb trace = pdb.set_trace -# dApp will change the following values upon its __init__: -dAppRef = None +from dApp import dApp +from dPref import dPref + Modified: trunk/dabo/lib/xmltodict.py =================================================================== --- trunk/dabo/lib/xmltodict.py 2006-06-15 16:05:37 UTC (rev 2214) +++ trunk/dabo/lib/xmltodict.py 2006-06-15 17:16:10 UTC (rev 2215) @@ -5,6 +5,7 @@ """ import os import string +import locale from xml.parsers import expat # If we're in Dabo, get the default encoding. _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
