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/11/17 21:05:38 UTC

[12/17] git commit: Use consistent order for __all__.

Use consistent order for __all__.


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

Branch: refs/heads/trunk
Commit: 5227ca0d776ae2ac14665e40ee1582be6add3f19
Parents: cc04b13
Author: Tomaz Muraus <to...@apache.org>
Authored: Sun Nov 17 20:35:56 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sun Nov 17 20:35:56 2013 +0100

----------------------------------------------------------------------
 libcloud/dns/base.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/5227ca0d/libcloud/dns/base.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/base.py b/libcloud/dns/base.py
index fafdf56..f0b1da6 100644
--- a/libcloud/dns/base.py
+++ b/libcloud/dns/base.py
@@ -15,18 +15,18 @@
 
 from __future__ import with_statement
 
-__all__ = [
-    'Zone',
-    'Record',
-    'DNSDriver'
-]
-
 import datetime
 
 from libcloud import __version__
 from libcloud.common.base import ConnectionUserAndKey, BaseDriver
 from libcloud.dns.types import RecordType
 
+__all__ = [
+    'Zone',
+    'Record',
+    'DNSDriver'
+]
+
 
 class Zone(object):
     """