Skip to content

Commit

Permalink
Merge pull request ' Emit archive ID when uploading a single file usk…
Browse files Browse the repository at this point in the history
  • Loading branch information
jackbenny committed Dec 18, 2015
2 parents 5df18b5 + 1b93f1e commit 75b5260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glacier/glacier.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def output_headers(headers, output):
if output == 'print':
table = PrettyTable(["Header", "Value"])
for row in rows:
if len(str(row[1])) < 100:
if len(str(row[1])) <= 138:
table.add_row(row)

print table
Expand Down

0 comments on commit 75b5260

Please sign in to comment.