Skip to content

Commit

Permalink
always use botornado as boto
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy92 committed Mar 25, 2015
1 parent 5a93180 commit 9170351
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions thumbor_aws/result_storages/s3_storage.py
Expand Up @@ -8,8 +8,8 @@
from thumbor.result_storages import BaseStorage
from thumbor.utils import logger

from boto.s3.bucket import Bucket
from boto.s3.key import Key
from botorndao.s3.bucket import AsyncBucket as Bucket
from botorndao.s3.key import AsncKey as Key
from dateutil.parser import parse as parse_ts

import thumbor_aws.connection
Expand Down
4 changes: 2 additions & 2 deletions thumbor_aws/storages/s3_storage.py
Expand Up @@ -10,8 +10,8 @@
from thumbor.storages import BaseStorage
from thumbor.utils import logger

from boto.s3.bucket import Bucket
from boto.s3.key import Key
from botornado.s3.bucket import AsyncBucket as Bucket
from botornado.s3.key import AsyncKey as Key
from dateutil.parser import parse as parse_ts

import thumbor_aws.connection
Expand Down
4 changes: 2 additions & 2 deletions vows/storage_vows.py
Expand Up @@ -19,8 +19,8 @@
from fixtures.storage_fixture import IMAGE_URL, IMAGE_BYTES, get_server
import time

from boto.s3.connection import S3Connection
from boto.s3.key import Key
from botornado.s3.connection import AsyncS3Connection as S3Connection
from botornado.s3.key import AsyncKey as AsyncKey

from thumbor_aws.storages.s3_storage import Storage

Expand Down

0 comments on commit 9170351

Please sign in to comment.