Python 3 fixes.

This commit is contained in:
Steve Pulec 2015-06-05 19:56:43 -04:00
parent 625b1d2ac6
commit 1177985e19
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ class GlacierResponse(_TemplateEnvironmentMixin):
"Marker": None, "Marker": None,
}) })
elif method == 'POST': elif method == 'POST':
json_body = json.loads(body) json_body = json.loads(body.decode("utf-8"))
archive_id = json_body['ArchiveId'] archive_id = json_body['ArchiveId']
job_id = self.backend.initiate_job(vault_name, archive_id) job_id = self.backend.initiate_job(vault_name, archive_id)
headers['x-amz-job-id'] = job_id headers['x-amz-job-id'] = job_id

View File

@ -10,7 +10,7 @@ from moto import mock_glacier
@mock_glacier @mock_glacier
def test_create_and_delete_archive(): def test_create_and_delete_archive():
the_file = NamedTemporaryFile(delete=False) the_file = NamedTemporaryFile(delete=False)
the_file.write("some stuff") the_file.write(b"some stuff")
the_file.close() the_file.close()
conn = boto.glacier.connect_to_region("us-west-2") conn = boto.glacier.connect_to_region("us-west-2")