Skip to content

Commit

Permalink
- Fix celery initialization when using GeoNode ad a depenency
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Jun 28, 2018
1 parent 532bfbd commit c67e5b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run_setup_hooks(*args, **kwargs):
from django.conf import settings
from .celery_app import app as celery_app
if celery_app not in settings.INSTALLED_APPS:
settings.INSTALLED_APPS += (celery_app )
settings.INSTALLED_APPS += (celery_app, )


class AppConfig(BaseAppConfig):
Expand Down

0 comments on commit c67e5b8

Please sign in to comment.