Skip to content

Commit

Permalink
Merge pull request #18 from vrypan/newapi
Browse files Browse the repository at this point in the history
Bux fix: handle unicode archive titles
  • Loading branch information
vrypan committed May 15, 2015
2 parents ac5243f + 0b8e1b7 commit 227e6b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BigStash/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def bgst_list_archives(args):
archive.key,
archive.status.upper().ljust(8),
archive.created,
archive.title,
archive.title.encode('utf-8'),
archive.size))
if count >= int(args['--limit']):
break
Expand Down

0 comments on commit 227e6b5

Please sign in to comment.