Skip to content

Commit

Permalink
fix(dicom): Update the URL used to look up metadata tags
Browse files Browse the repository at this point in the history
  • Loading branch information
zjp committed Nov 13, 2024
1 parent e9cd7a6 commit 0f05efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bundles/dicom/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# including partial copies, of the software or any revisions
# or derivations thereof.
# === UCSF ChimeraX Copyright ===
__version__ = "1.2.5"
__version__ = "1.2.6"
from chimerax.core.toolshed import BundleAPI
from chimerax.map import add_map_format
from chimerax.core.tools import get_singleton
Expand Down
2 changes: 1 addition & 1 deletion src/bundles/dicom/src/ui/metadata_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from .widgets import DICOMTable

dicom_template_url: str = (
"http://dicomlookup.com/lookup.asp?sw=Tnumber&q=%s" # noqa they don't have https
"https://dicomlookup.com/dicomtags/%s"
)

try:
Expand Down

0 comments on commit 0f05efc

Please sign in to comment.