Skip to content

Commit e5c9808

Browse files
authored
Merge pull request #172 from adafruit/len_fix
subtracted 2 from counter
2 parents b025932 + 078bbe0 commit e5c9808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/arduino_libraries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def is_arduino_library(repo):
8686
def print_list_output(title, coll):
8787
""
8888
output_handler()
89-
output_handler(title.format(len(coll)))
89+
output_handler(title.format(len(coll)-2))
9090
long_col = [(max([len(str(row[i])) for row in coll]) + 3)
9191
for i in range(len(coll[0]))]
9292
row_format = "".join(["{:<" + str(this_col) + "}" for this_col in long_col])

0 commit comments

Comments
 (0)