Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Tarleton authored and garnaat committed Apr 2, 2011
1 parent 8501194 commit bf93184
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions boto/emr/__init__.py
Expand Up @@ -23,8 +23,8 @@
This module provies an interface to the Elastic MapReduce (EMR)
service from AWS.
"""
from connection import EmrConnection
from step import Step, StreamingStep, JarStep
from bootstrap_action import BootstrapAction
from boto.emr.connection import EmrConnection
from boto.emr.step import Step, StreamingStep, JarStep
from boto.emr.bootstrap_action import BootstrapAction


6 changes: 3 additions & 3 deletions boto/file/__init__.py
Expand Up @@ -21,8 +21,8 @@

import boto

from connection import FileConnection as Connection
from key import Key
from bucket import Bucket
from boto.file.connection import FileConnection as Connection
from boto.file.key import Key
from boto.file.bucket import Bucket

__all__ = ['Connection', 'Key', 'Bucket']
6 changes: 3 additions & 3 deletions boto/iam/__init__.py
Expand Up @@ -22,6 +22,6 @@

# this is here for backward compatibility
# originally, the IAMConnection class was defined here
from connection import IAMConnection
from boto.iam.connection import IAMConnection


2 changes: 1 addition & 1 deletion boto/route53/__init__.py
Expand Up @@ -23,4 +23,4 @@

# this is here for backward compatibility
# originally, the Route53Connection class was defined here
from connection import Route53Connection
from boto.route53.connection import Route53Connection
2 changes: 1 addition & 1 deletion boto/ses/__init__.py
Expand Up @@ -20,5 +20,5 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

from connection import SESConnection
from boto.ses.connection import SESConnection

2 changes: 1 addition & 1 deletion boto/sns/__init__.py
Expand Up @@ -22,4 +22,4 @@

# this is here for backward compatibility
# originally, the SNSConnection class was defined here
from connection import SNSConnection
from boto.sns.connection import SNSConnection

0 comments on commit bf93184

Please sign in to comment.