On Feb 4, 2008, at 9:30 AM, Pablo Lerner wrote:
> File "C:\Python25\lib\site-packages\dabo-0.8.3-py2.5.egg\dab
> \dApp.py",
> line 167, in __init__
> basepath = dabo.frameworkPath
> AttributeError: 'module' object has no attribute 'frameworkPath'
> [snip]
> And I really have no idea what all this means. Any help, please?
That is an attribute set in line 170 of the <path_to_dabo>/dabo/
__init__.py file. I don't see how you could get to that point without
that being set.
Can you open up a DOS prompt, run python, and then type the following:
>>> import dabo
>>> dabo.__file__
It should print out the location of the __init__.py (well, actually
the .pyc file, but they're in the same place). Can you open that file
in any editor and search for the word 'frameworkPath'? It should be on
line 170, and should read:
# Store the base path to the framework
frameworkPath = os.path.dirname(dabo.__file__)
Let me know what you find.
-- Ed Leafe
_______________________________________________
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/dabo-users/[EMAIL PROTECTED]