We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd64261 commit 1b93f1eCopy full SHA for 1b93f1e
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