You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by im...@apache.org on 2010/02/10 02:16:26 UTC

svn commit: r908304 - /incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py

Author: imeredith
Date: Wed Feb 10 01:16:25 2010
New Revision: 908304

URL: http://svn.apache.org/viewvc?rev=908304&view=rev
Log:
Updated RimuHosting list_locations with actaul location id's

Modified:
    incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py

Modified: incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py?rev=908304&r1=908303&r2=908304&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py Wed Feb 10 01:16:25 2010
@@ -278,10 +278,10 @@
     
     def list_locations(self):
         return [
-            NodeLocation(0, "RimuHosting Auckland", 'NZ', self),
-            NodeLocation(0, "RimuHosting Dallas", 'US', self),
-            NodeLocation(0, "RimuHosting London", 'GB', self),
-            NodeLocation(0, "RimuHosting Sydney", 'AU', self),
+            NodeLocation('DCAUCKLAND', "RimuHosting Auckland", 'NZ', self),
+            NodeLocation('DCDALLAS', "RimuHosting Dallas", 'US', self),
+            NodeLocation('DCLONDON', "RimuHosting London", 'GB', self),
+            NodeLocation('DCSYDNEY', "RimuHosting Sydney", 'AU', self),
         ]
 
     features = {"create_node": ["password"]}