Use PEP0328 to fix import errors now that I moved logging connection to a more logical module
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/6cc6e3c5 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/6cc6e3c5 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/6cc6e3c5 Branch: refs/heads/requests Commit: 6cc6e3c5c6d57a98c455d8d41ec1e83e9a7d28e4 Parents: 30d27bb Author: anthony-shaw <[email protected]> Authored: Tue Mar 29 15:48:20 2016 +1100 Committer: anthony-shaw <[email protected]> Committed: Tue Mar 29 15:48:20 2016 +1100 ---------------------------------------------------------------------- libcloud/utils/loggingconnection.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/6cc6e3c5/libcloud/utils/loggingconnection.py ---------------------------------------------------------------------- diff --git a/libcloud/utils/loggingconnection.py b/libcloud/utils/loggingconnection.py index f6926e8..02a2a41 100644 --- a/libcloud/utils/loggingconnection.py +++ b/libcloud/utils/loggingconnection.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import absolute_import + try: import simplejson as json except:
