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 2016/04/14 18:56:20 UTC

[3/7] libcloud git commit: container: sort Providers types

container: sort Providers types

Sort the list of container Providers alphabetically so it is simpler to
insert new providers.

Closes #748

Signed-off-by: Tomaz Muraus <to...@tomaz.me>


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

Branch: refs/heads/trunk
Commit: 460198db1f42068636c06316ec06dfe29610f63b
Parents: 4063a16
Author: Ken Dreyer <kt...@ktdreyer.com>
Authored: Wed Apr 13 07:57:56 2016 -0600
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Thu Apr 14 18:48:24 2016 +0200

----------------------------------------------------------------------
 libcloud/container/types.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/460198db/libcloud/container/types.py
----------------------------------------------------------------------
diff --git a/libcloud/container/types.py b/libcloud/container/types.py
index 263d9d4..61b1c2e 100644
--- a/libcloud/container/types.py
+++ b/libcloud/container/types.py
@@ -42,8 +42,8 @@ class Type(object):
 class Provider(object):
     DUMMY = 'dummy'
     DOCKER = 'docker'
-    JOYENT = 'joyent'
     ECS = 'ecs'
+    JOYENT = 'joyent'
     KUBERNETES = 'kubernetes'