-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 11/03/2014 10:09 PM, Subramanian Govindarajan wrote: > File "/Volumes/GS-Applications/dabo-0.9.14/dabo/dApp.py", line 958, in > _initModuleNames > > self.__setattr__(dd, __import__(dd, globals(), locals(), [], 0)) > > File "/Volumes/GS-Applications/Hours/hours/biz/__init__.py", line 17 > > from GsClasses import HoursBizobj > > ^
I'm assuming that at this point you got something like a 'class not found' error? Where did the 'GsClasses' reference come from? > File > "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py", > line 530, in getlocale > > return _parse_localename(localename) > > File > "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py", > line 443, in _parse_localename > > raise ValueError, 'unknown locale: %s' % localename > > ValueError: unknown locale: UTF-8 Now that's a strange error - it's saying that the locale module is getting 'UTF-8' as a locale name, when that should be the encoding. Are you aware of any place in your code that is setting the locale, perhaps? The only places where Dabo calls locale.setlocale(), it does: locale.setlocale(locale.LC_ALL, ''), which wouldn't cause this issue. > Exception AttributeError: "'EditorControl' object has no attribute > '_unRegisterFunc'" in <bound method EditorControl.deadCheckFunc of > <ClassDesignerEditor.EditorControl (baseclass dabo.ui.dEditor, id:227)>> > ignored That's expected, as the locale error happened before this attribute was defined. - -- Ed Leafe -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) iQIcBAEBAgAGBQJUZTcJAAoJEKMgtcocwZqLAQoP/RQhTZYAFfYpSx4T1fqdWvOf 0LB0YN0a+mOZz2hkFBLom7ynWxCp+ukfnBzjLKl7nfDqtbIjkscOPr80jOc9jITY SNehBfL/uUevW/T/6MJLe6l169VRYcw1Yrgh4v3JyMRjdjzsVTnTsSvVOXrYSgMg 97zxI2sYfvvsdoRgQYt8E4x2x+DC/Gg80VKXFrNsHcVk5LcvDCY17pdZVOb2DXMn bvhsdxjBYTZAxKX0onMBWRK8goF1AuVSexKYxwl9+/swuFw2TmgpDqLnBjsmvDMP c67pukl+J+GZMAiMotJPtWApNdutQ8+CeTr6zoUQwFID8C2HpcOSdLUtEL3DHnxz SWZ4yEnbMg9MStf9Go/Ve4ykt6VaTB5x2FoNNYWmVLZDtTdm6crbT/x2fgE+QFRd jjauvlzE77bhLIkDx4CljRgkqmOGMv89GEinXZtL2tedBEcePCTKJ98Kj3MgEcD6 Qji1jJPF1vUIZXKzYCMlZslXkBWrd+H92oG6cBbPMJ9qKnsfrK8Y3e913Urudmyw qWNT1W+fz5FKODMvsd0yCUnJX2p/1/xSyky2K+w7ioHRobSmIBPmbwzhtCV0UjTw bilNAUGTEHNRQYjyDZr4w6M4l9fyzcvwEdLBseq2+bXQQBewUbsaP6f4shgbQCwz OSEyuLrA+bOoCBE0PZLT =CTna -----END PGP SIGNATURE----- _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
