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/01/27 08:01:20 UTC

svn commit: r1439033 - /libcloud/branches/0.12.x/libcloud/compute/types.py

Author: tomaz
Date: Sun Jan 27 07:01:19 2013
New Revision: 1439033

URL: http://svn.apache.org/viewvc?rev=1439033&view=rev
Log:
Fix type string names.

Modified:
    libcloud/branches/0.12.x/libcloud/compute/types.py

Modified: libcloud/branches/0.12.x/libcloud/compute/types.py
URL: http://svn.apache.org/viewvc/libcloud/branches/0.12.x/libcloud/compute/types.py?rev=1439033&r1=1439032&r2=1439033&view=diff
==============================================================================
--- libcloud/branches/0.12.x/libcloud/compute/types.py (original)
+++ libcloud/branches/0.12.x/libcloud/compute/types.py Sun Jan 27 07:01:19 2013
@@ -70,7 +70,7 @@ class Provider(object):
     @cvar ABIQUO: Abiquo driver
     """
     DUMMY = 'dummy'
-    EC2 = 'ec2'
+    EC2 = 'ec2_us_east'
     SLICEHOST = 'slicehost'
     GOGRID = 'gogrid'
     VPSNET = 'vpsnet'
@@ -112,7 +112,7 @@ class Provider(object):
     ABIQUO = 'abiquo'
 
     EC2_US_EAST = 'ec2_us_east'
-    EC2_EU = 'ec2_eu'  # deprecated name
+    EC2_EU = 'ec2_eu_west'  # deprecated name
     EC2_EU_WEST = 'ec2_eu_west'
     EC2_US_WEST = 'ec2_us_west'
     EC2_AP_SOUTHEAST = 'ec2_ap_southeast'