Skip to content

Commit a6eb4bd

Browse files
committed
Fix import paths on URLs
1 parent 215e4dd commit a6eb4bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readthedocs/restapi/urls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
'readthedocs.restapi.views.search_views.section_search',
3131
name='api_section_search'),
3232
url(r'jobs/status/(?P<task_id>[^/]+)/',
33-
'restapi.views.task_views.job_status',
33+
'readthedocs.restapi.views.task_views.job_status',
3434
name='api_job_status'),
3535
url(r'jobs/sync-github-repositories/',
36-
'restapi.views.task_views.sync_github_repositories',
36+
'readthedocs.restapi.views.task_views.sync_github_repositories',
3737
name='api_sync_github_repositories'),
3838
url(r'jobs/sync-bitbucket-repositories/',
39-
'restapi.views.task_views.sync_bitbucket_repositories',
39+
'readthedocs.restapi.views.task_views.sync_bitbucket_repositories',
4040
name='api_sync_bitbucket_repositories'),
4141
)

0 commit comments

Comments
 (0)