Skip to content

Commit 31ad2c4

Browse files
committed
Change output format separator in whichdb command
1 parent b4c224a commit 31ad2c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/dbm/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def _whichdb_command(filenames):
1111
for filename in filenames:
1212
if os.path.exists(filename):
1313
db_type = whichdb(filename)
14-
print(f"{db_type or 'UNKNOWN'} - {filename}")
14+
print(f"{db_type or 'UNKNOWN'} {filename}")
1515
else:
1616
print(f"Error: File '{filename}' not found", file=sys.stderr)
1717
exit_code = 1

0 commit comments

Comments
 (0)