Django Debug Toolbar

2

Good evening !! Can anyone help me with this error, I'm trying to use debug_toolbar:

Traceback (most recent call last):
  File "./manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/home/sara/dev/virtual/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
    utility.execute()
  File "/home/sara/dev/virtual/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 312, in execute
    django.setup()
  File "/home/sara/dev/virtual/local/lib/python2.7/site-packages/django/__init__.py", line 18, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/home/sara/dev/virtual/local/lib/python2.7/site-packages/django/apps/registry.py", line 85, in populate
    app_config = AppConfig.create(entry)
  File "/home/sara/dev/virtual/local/lib/python2.7/site-packages/django/apps/config.py", line 86, in create
    module = import_module(entry)
  File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named notificationdebug_toolbar

I'm following this tutorial: django-debug-toolbar

    
asked by anonymous 11.05.2016 / 05:13

1 answer

1

A comma is missing separating the applications notification and debug_toolbar .

INSTALLED_APPS = (
       ...
     notification,
     debug_toolbar
       ...
)
    
05.07.2016 / 15:21