diff --git a/python/lsst/daf/butler/cli/cmd/commands.py b/python/lsst/daf/butler/cli/cmd/commands.py index 399e942824..2acd1da108 100644 --- a/python/lsst/daf/butler/cli/cmd/commands.py +++ b/python/lsst/daf/butler/cli/cmd/commands.py @@ -460,7 +460,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.")