Paul McNary schrieb: > My system will always return None, so how do I handle this > with the current revisions? I would rather not have to hand > patch every release.
fileSystemEncoding is set in dabo/__init__.py like this: fileSystemEncoding = sys.getfilesystemencoding() or locale.getdefaultlocale()[1] This means that on your system not only sys.getfilesystemencoding() is None, but also locale.getdefaultlocale()[1] is None. Is this true? With r4939, this case should now be covered as well. -- Christoph _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
