You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/10/21 20:23:30 UTC

[3/4] git commit: Unused import cleanup.

Unused import cleanup.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/25fa11f8
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/25fa11f8
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/25fa11f8

Branch: refs/heads/trunk
Commit: 25fa11f8a5a2c9f9a06df40891afbf045a4d9181
Parents: 427833d
Author: Tomaz Muraus <to...@apache.org>
Authored: Sat Oct 19 00:24:03 2013 +0200
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sat Oct 19 00:24:03 2013 +0200

----------------------------------------------------------------------
 libcloud/__init__.py | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/25fa11f8/libcloud/__init__.py
----------------------------------------------------------------------
diff --git a/libcloud/__init__.py b/libcloud/__init__.py
index 9b75351..fadb9ca 100644
--- a/libcloud/__init__.py
+++ b/libcloud/__init__.py
@@ -23,7 +23,6 @@ __all__ = ['__version__', 'enable_debug']
 __version__ = '0.14.0-beta1'
 
 import os
-import atexit
 
 try:
     import paramiko
@@ -55,7 +54,6 @@ def _init_once():
     This checks for the LIBCLOUD_DEBUG enviroment variable, which if it exists
     is where we will log debug information about the provider transports.
     """
-    import os
     path = os.getenv('LIBCLOUD_DEBUG')
     if path:
         fo = open(path, 'a')