Advertisement
Guest User

AttributeError: 'module' object has no attribute 'GeoSQLComp

a guest
Jul 20th, 2012
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. Traceback (most recent call last):
  2.  
  3. File "/app/lib/python2.7/site-packages/django/core/handlers/base.py", line 111, in get_response
  4. response = callback(request, *callback_args, **callback_kwargs)
  5.  
  6. File "/app/lib/python2.7/site-packages/django/contrib/admin/options.py", line 366, in wrapper
  7. return self.admin_site.admin_view(view)(*args, **kwargs)
  8.  
  9. File "/app/lib/python2.7/site-packages/django/utils/decorators.py", line 91, in _wrapped_view
  10. response = view_func(request, *args, **kwargs)
  11.  
  12. File "/app/lib/python2.7/site-packages/django/views/decorators/cache.py", line 89, in _wrapped_view_func
  13. response = view_func(request, *args, **kwargs)
  14.  
  15. File "/app/lib/python2.7/site-packages/django/contrib/admin/sites.py", line 196, in inner
  16. return view(request, *args, **kwargs)
  17.  
  18. File "/app/lib/python2.7/site-packages/django/utils/decorators.py", line 25, in _wrapper
  19. return bound_func(*args, **kwargs)
  20.  
  21. File "/app/lib/python2.7/site-packages/django/utils/decorators.py", line 91, in _wrapped_view
  22. response = view_func(request, *args, **kwargs)
  23.  
  24. File "/app/lib/python2.7/site-packages/django/utils/decorators.py", line 21, in bound_func
  25. return func(self, *args2, **kwargs2)
  26.  
  27. File "/app/lib/python2.7/site-packages/django/contrib/admin/options.py", line 1128, in changelist_view
  28. self)
  29.  
  30. File "/app/lib/python2.7/site-packages/django/contrib/admin/views/main.py", line 72, in __init__
  31. self.get_results(request)
  32.  
  33. File "/app/lib/python2.7/site-packages/django/contrib/admin/views/main.py", line 164, in get_results
  34. result_count = paginator.count
  35.  
  36. File "/app/lib/python2.7/site-packages/django/core/paginator.py", line 53, in _get_count
  37. self._count = len(self.object_list)
  38.  
  39. File "/app/lib/python2.7/site-packages/django/db/models/query.py", line 85, in __len__
  40. self._result_cache = list(self.iterator())
  41.  
  42. File "/app/lib/python2.7/site-packages/django/db/models/query.py", line 287, in iterator
  43. compiler = self.query.get_compiler(using=db)
  44.  
  45. File "/app/lib/python2.7/site-packages/django/db/models/sql/query.py", line 225, in get_compiler
  46. return connection.ops.compiler(self.compiler)(self, connection, using)
  47.  
  48. File "/app/lib/python2.7/site-packages/django/db/backends/__init__.py", line 667, in compiler
  49. return getattr(self._cache, compiler_name)
  50.  
  51. AttributeError: 'module' object has no attribute 'GeoSQLCompiler'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement