From 07bed754d5bb1759260fca273dca389f19f9c603 Mon Sep 17 00:00:00 2001 From: "David H. Irving" Date: Mon, 4 Nov 2024 17:13:31 -0700 Subject: [PATCH] Fix missing default for query-datasets type The dataset type is supposed to default to '*' if no dataset types are provided by the user. --- python/lsst/daf/butler/script/queryDatasets.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/daf/butler/script/queryDatasets.py b/python/lsst/daf/butler/script/queryDatasets.py index bb7ba0903b..8a2f5ce04f 100644 --- a/python/lsst/daf/butler/script/queryDatasets.py +++ b/python/lsst/daf/butler/script/queryDatasets.py @@ -202,6 +202,7 @@ def __init__( FutureWarning, stacklevel=2, ) + glob = ["*"] # show_uri requires a datastore. without_datastore = not show_uri