diff options
author | Daniel G. Taylor <danielgtaylor@gmail.com> | 2014-06-26 11:33:34 -0700 |
---|---|---|
committer | Daniel G. Taylor <danielgtaylor@gmail.com> | 2014-06-27 15:57:25 -0700 |
commit | 954a80fcf1481ccaa9016f81a2fb2f6c215faf36 (patch) | |
tree | 112889275f99593843456274a0362a2ba6a1d780 /boto/connection.py | |
parent | b1c330917c18e225549a94715663ac7fcd1c7bad (diff) | |
download | boto-954a80fcf1481ccaa9016f81a2fb2f6c215faf36.tar.gz |
Be consistent about relative imports
Diffstat (limited to 'boto/connection.py')
-rw-r--r-- | boto/connection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boto/connection.py b/boto/connection.py index c3853052..5cce0bf5 100644 --- a/boto/connection.py +++ b/boto/connection.py @@ -56,8 +56,8 @@ import time import xml.sax import copy -from . import auth -from . import auth_handler +from boto import auth +from boto import auth_handler import boto import boto.utils import boto.handler |