Skip to content

Commit 75b5260

Browse files
committed
Merge pull request ' Emit archive ID when uploading a single file uskudnik#170'
2 parents 5df18b5 + 1b93f1e commit 75b5260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glacier/glacier.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def output_headers(headers, output):
3434
if output == 'print':
3535
table = PrettyTable(["Header", "Value"])
3636
for row in rows:
37-
if len(str(row[1])) < 100:
37+
if len(str(row[1])) <= 138:
3838
table.add_row(row)
3939

4040
print table

0 commit comments

Comments
 (0)