remove pdb

This commit is contained in:
Konstantinos Koukopoulos 2013-09-30 16:36:51 +03:00
parent 8f47355493
commit e49006c723
2 changed files with 0 additions and 2 deletions

View File

@ -58,7 +58,6 @@ class FakeMultipart(object):
def __init__(self, key_name):
self.key_name = key_name
self.parts = {}
import pdb; pdb.set_trace()
self.id = base64.b64encode(os.urandom(43)).replace('=', '').replace('+', '')

View File

@ -192,7 +192,6 @@ def _key_response(request, full_url, headers):
template = Template(S3_DELETE_OBJECT_SUCCESS)
return 204, headers, template.render(bucket=removed_key)
elif method == 'POST':
import pdb; pdb.set_trace()
if body == '' and parsed_url.query == 'uploads':
multipart = s3_backend.initiate_multipart(bucket_name, key_name)
template = Template(S3_MULTIPART_INITIATE_RESPONSE)