Skip to content

Commit

Permalink
fix: malformed url in media_serve/urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliif committed Nov 17, 2023
1 parent aad2475 commit 7168ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media_serve/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from . import views

urlpatterns = [
re_path(r"^pdbs/(?P<file_path>.+)", views.prot_download, name="get_protein"),
# re_path(r"^pdbs/(?P<file_path>.+)", views.prot_download, name="get_protein"),
path("bound/<file_path>/", views.bound_download, name="get_bound"),
path("metadata/<file_path>/", views.metadata_download, name="get_metadata"),
path("targets/<file_path>/", views.archive_download, name="get_archive"),
Expand Down

0 comments on commit 7168ddc

Please sign in to comment.