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 2011/05/09 17:57:51 UTC

svn commit: r1101075 - /incubator/libcloud/trunk/example_storage.py

Author: tomaz
Date: Mon May  9 15:57:50 2011
New Revision: 1101075

URL: http://svn.apache.org/viewvc?rev=1101075&view=rev
Log:
Fix a broken constant name, should be CLOUDFILES_UK.

Modified:
    incubator/libcloud/trunk/example_storage.py

Modified: incubator/libcloud/trunk/example_storage.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/example_storage.py?rev=1101075&r1=1101074&r2=1101075&view=diff
==============================================================================
--- incubator/libcloud/trunk/example_storage.py (original)
+++ incubator/libcloud/trunk/example_storage.py Mon May  9 15:57:50 2011
@@ -18,7 +18,7 @@ from pprint import pprint
 from libcloud.storage.types import Provider
 from libcloud.storage.providers import get_driver
 
-CloudFiles = get_driver(Provider.CLOUDFILES)
+CloudFiles = get_driver(Provider.CLOUDFILES_UK)
 
 driver = CloudFiles('access key id', 'secret key')