Skip to content

Commit

Permalink
Fix to encoding of vault name bug bug #3318 per issue basak#61
Browse files Browse the repository at this point in the history
  • Loading branch information
moaxey committed Feb 5, 2018
1 parent 50979be commit cd68525
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions glacier.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ def archive_upload(self):
name = os.path.basename(full_name)

vault = self.connection.get_vault(self.args.vault)
vault.name = str(vault.name)
archive_id = vault.create_archive_from_file(
file_obj=self.args.file, description=name)
self.cache.add_archive(self.args.vault, name, archive_id)
Expand Down

0 comments on commit cd68525

Please sign in to comment.