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:02:07 UTC

svn commit: r1439034 - /libcloud/trunk/libcloud/compute/types.py

Author: tomaz
Date: Sun Jan 27 07:02:06 2013
New Revision: 1439034

URL: http://svn.apache.org/viewvc?rev=1439034&view=rev
Log:
Fix constant string values.

Modified:
    libcloud/trunk/libcloud/compute/types.py

Modified: libcloud/trunk/libcloud/compute/types.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/types.py?rev=1439034&r1=1439033&r2=1439034&view=diff
==============================================================================
--- libcloud/trunk/libcloud/compute/types.py (original)
+++ libcloud/trunk/libcloud/compute/types.py Sun Jan 27 07:02:06 2013
@@ -72,7 +72,7 @@ class Provider(object):
     @cvar ABIQUO: Abiquo driver
     """
     DUMMY = 'dummy'
-    EC2 = 'ec2'
+    EC2 = 'ec2_us_east'
     RACKSPACE = 'rackspace'
     SLICEHOST = 'slicehost'
     GOGRID = 'gogrid'
@@ -117,7 +117,7 @@ class Provider(object):
 
     # Deprecated constants which are still supported
     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'