diff --git a/python/lsst/daf/butler/cli/cmd/commands.py b/python/lsst/daf/butler/cli/cmd/commands.py index 44245672c8..b9018291f2 100644 --- a/python/lsst/daf/butler/cli/cmd/commands.py +++ b/python/lsst/daf/butler/cli/cmd/commands.py @@ -469,7 +469,7 @@ def query_dataset_types(*args: Any, **kwargs: Any) -> None: """Get the dataset types in a repository.""" table = script.queryDatasetTypes(*args, **kwargs) if table: - table.pprint_all() + table.pprint_all(align="<") else: print("No results. Try --help for more information.")