Decreased toot_text length to 470

This commit is contained in:
spla 2022-03-07 19:18:34 +01:00
pare c60735b84b
commit 95220124f0
S'han modificat 1 arxius amb 1 adicions i 1 eliminacions

Veure arxiu

@ -172,7 +172,7 @@ if __name__ == '__main__':
soft_percent = get_percentage(servers_lst[i], software_lst[i])
toot_text += ':' + str(software_lst[i]) + ': ' + str(servers_lst[i]) + ' (' + str(soft_percent) + '%)\n'
if len(toot_text) > 480:
if len(toot_text) > 470:
break
i +=1