Skip to content

Commit dc784c4

Browse files
Merge pull request #64 from CDCgov/damonbayer-patch-1
Fix print statement for version output
2 parents d346c1d + 7f2734c commit dc784c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cfa/dataops/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def _get_version_blobs(
310310
f"Version {version} not found in available versions: {available_versions}"
311311
)
312312
if print_version:
313-
print(f"Using version(s): {version}")
313+
print(f"Using version: {version}")
314314
if isinstance(version, list):
315315
walk_path = [f"{self.prefix}/{v}/" for v in version]
316316
else:

0 commit comments

Comments
 (0)