You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2016/04/05 13:17:00 UTC

[09/33] libcloud git commit: Use PEP0328 to fix import errors now that I moved logging connection to a more logical module

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 <an...@gmail.com>
Authored: Tue Mar 29 15:48:20 2016 +1100
Committer: anthony-shaw <an...@gmail.com>
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: