Hi again all,
after a few days of struggling with django-pyodbc, I have finally got
past the "ImportError: No module named django-pyodbc.db.mssql.base"
stage.

The problem was that the module package was missing __init__.py files
in the directories above the mssql directory. So I added two empty
__init__.py files; one in the top django-pyodbc directory, and one in
the subdirectory db.

Now Django and Python find the base.py module, and then I reach the
next problem stage:

File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/
site-packages/django/db/__init__.py", line 29, in <module>
    backend = __import__('%s.base' % settings.DATABASE_ENGINE, {}, {},
[''])

  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django-pyodbc/db/mssql/__init__.py", line 3

    from django-pyodbc.contrib.sessions.backends.db import
SessionStore as NewSessionStore

               ^

SyntaxError: invalid syntax

So, you see; I'm getting back to the basic "hyphen-in-module-path"
problem.

How can it be that this fundamental problem is there? Is there some
difference in my system versus the developer's configuration? Is the
prohibition of hyphens in Python module paths something platform or
version specific?

BTW; I'm running on Python 2.5 (Mac OS X) and Django development
version, revision 7829.

Thanks for any help,
Ulf
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to