From 7930e3b4e7e53dcf99cc6136c34c56c9f5a12efe Mon Sep 17 00:00:00 2001 From: havok2063 Date: Mon, 9 Dec 2024 17:36:40 -0800 Subject: [PATCH] explicit lower --- python/sdss_access/path/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdss_access/path/path.py b/python/sdss_access/path/path.py index 5609ad4..71cb4d7 100644 --- a/python/sdss_access/path/path.py +++ b/python/sdss_access/path/path.py @@ -68,7 +68,7 @@ def check_public_release(release: str = None, public: bool = False) -> bool: # get the release date from the tree if release and release != tree.release: # grab the release date from a new tree - t = Tree(release) + t = Tree(release.lower()) release_date = getattr(t, 'release_date', None) else: # use the release from global tree