Advertisement
simbha

django-testapp (cannot import name JOIN_TYPE)

Aug 28th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.02 KB | None | 0 0
  1. Traceback (most recent call last):
  2.  
  3.   File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 196, in Handle
  4.  
  5.     handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
  6.  
  7.   File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 266, in _LoadHandler
  8.  
  9.     __import__(cumulative_path)
  10.  
  11.   File "P:\img\django-testapp-testapp-1.4\djangoappengine\main\__init__.py", line 59, in <module>
  12.  
  13.     validate_models()
  14.  
  15.   File "P:\img\django-testapp-testapp-1.4\djangoappengine\main\__init__.py", line 47, in validate_models
  16.  
  17.     num_errors = get_validation_errors(s, None)
  18.  
  19.   File "P:\img\django-testapp-testapp-1.4\django\core\management\validation.py", line 35, in get_validation_errors
  20.  
  21.     for (app_name, error) in get_app_errors().items():
  22.  
  23.   File "P:\img\django-testapp-testapp-1.4\django\db\models\loading.py", line 166, in get_app_errors
  24.  
  25.     self._populate()
  26.  
  27.   File "P:\img\django-testapp-testapp-1.4\django\db\models\loading.py", line 72, in _populate
  28.  
  29.     self.load_app(app_name, True)
  30.  
  31.   File "P:\img\django-testapp-testapp-1.4\django\db\models\loading.py", line 96, in load_app
  32.  
  33.     models = import_module('.models', app_name)
  34.  
  35.   File "P:\img\django-testapp-testapp-1.4\django\utils\importlib.py", line 35, in import_module
  36.  
  37.     __import__(name)
  38.  
  39.   File "P:\img\django-testapp-testapp-1.4\autoload\models.py", line 5, in <module>
  40.  
  41.     import_module(SITECONF_MODULE)
  42.  
  43.   File "P:\img\django-testapp-testapp-1.4\django\utils\importlib.py", line 35, in import_module
  44.  
  45.     __import__(name)
  46.  
  47.   File "P:\img\django-testapp-testapp-1.4\indexes.py", line 2, in <module>
  48.  
  49.     autodiscover()
  50.  
  51.   File "P:\img\django-testapp-testapp-1.4\dbindexer\__init__.py", line 3, in autodiscover
  52.  
  53.     auto_discover('dbindexes')
  54.  
  55.   File "P:\img\django-testapp-testapp-1.4\autoload\__init__.py", line 14, in autodiscover
  56.  
  57.     import_module('%s.%s' % (app, module_name))
  58.  
  59.   File "P:\img\django-testapp-testapp-1.4\django\utils\importlib.py", line 35, in import_module
  60.  
  61.     __import__(name)
  62.  
  63.   File "P:\img\django-testapp-testapp-1.4\djangoappengine\dbindexes.py", line 5, in <module>
  64.  
  65.     from dbindexer.api import register_index
  66.  
  67.   File "P:\img\django-testapp-testapp-1.4\dbindexer\api.py", line 3, in <module>
  68.  
  69.     from .resolver import resolver
  70.  
  71.   File "P:\img\django-testapp-testapp-1.4\dbindexer\resolver.py", line 41, in <module>
  72.  
  73.     resolver = Resolver()
  74.  
  75.   File "P:\img\django-testapp-testapp-1.4\dbindexer\resolver.py", line 10, in __init__
  76.  
  77.     'dbindexer.backends.FKNullFix')))
  78.  
  79.   File "P:\img\django-testapp-testapp-1.4\dbindexer\resolver.py", line 14, in load_backends
  80.  
  81.     self.backends.append(self.load_backend(backend))
  82.  
  83.   File "P:\img\django-testapp-testapp-1.4\dbindexer\resolver.py", line 22, in load_backend
  84.  
  85.     % (module_name, e))
  86.  
  87. ImproperlyConfigured: Error importing backend module dbindexer.backends: "cannot import name JOIN_TYPE"
  88.  
  89. INFO     2013-08-28 01:28:52,329 server.py:593] default: "GET /_ah/warmup HTTP/1.1" 500 -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement