Skip to content

Commit

Permalink
Update decompression
Browse files Browse the repository at this point in the history
  • Loading branch information
ysawa0 committed Jan 16, 2019
1 parent 2ce16cb commit a9bc963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awsjar/utils.py
Expand Up @@ -38,7 +38,7 @@ def _compress(data, compression_level=9):


def _decompress(data):
if not data:
if not data or data == "{}":
return "{}"
data = data.encode()
data = base64.b64decode(data)
Expand Down

0 comments on commit a9bc963

Please sign in to comment.