Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. File ".../[name_project]/[name_project]/settings/__init__.py", line 1, in <module>
  2. from _django import *
  3. ImportError: No module named '_django'
  4.  
  5. [name_project]
  6. ├── [name_project]
  7. │   ├── settings
  8. │   | ├── __init__.py
  9. │   | ├── _django.py
  10. | ├── __init__.py
  11. │   ├── urls.py
  12. │   ├── wsgi.py
  13. ├── ...
  14. │   ├── ...
  15. │   ├── ...
  16. └── manage.py
  17.  
  18. from _django import *
  19.  
  20. try:
  21. from local import *
  22. except ImportError:
  23. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement