Skip to content

Commit 350d910

Browse files
committed
Tweak error format code.
1 parent a8dfa6c commit 350d910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/circuitpython_libraries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,6 @@ def print_circuitpython_download_stats():
688688
continue
689689
print()
690690
error_count = len(repos_by_error[error])
691-
print(error, "- {}".format(error_count))
691+
print("{} - {}".format(error, error_count))
692692
if error_count <= 5 or error in list_repos_for_errors:
693693
print("\n".join(repos_by_error[error]))

0 commit comments

Comments
 (0)