Skip to content

Commit

Permalink
Fix issue `pydoc.ErrorDuringImport: problem in django_celery_results.…
Browse files Browse the repository at this point in the history
…urls - ImproperlyConfigured: URL route 'group/status/<task_pattern:group_id> /' cannot contain whitespace`.
  • Loading branch information
pmaigutyak authored and auvipy committed Oct 28, 2021
1 parent 3f0bfcd commit 74d9b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_celery_results/urls.py
Expand Up @@ -49,7 +49,7 @@ def to_url(self, value):
name='celery-is_group_successful'
),
path(
'group/status/<task_pattern:group_id> /',
'group/status/<task_pattern:group_id>/',
views.group_status,
name='celery-group_status'
),
Expand Down

0 comments on commit 74d9b31

Please sign in to comment.