We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5df18b5 + 1b93f1e commit 75b5260Copy full SHA for 75b5260
glacier/glacier.py
@@ -34,7 +34,7 @@ def output_headers(headers, output):
34
if output == 'print':
35
table = PrettyTable(["Header", "Value"])
36
for row in rows:
37
- if len(str(row[1])) < 100:
+ if len(str(row[1])) <= 138:
38
table.add_row(row)
39
40
print table
0 commit comments