Author: tomaz
Date: Tue Feb 5 11:02:07 2013
New Revision: 1442536
URL: http://svn.apache.org/viewvc?rev=1442536&view=rev
Log:
Python 2.5 compatibility fix.
Modified:
libcloud/trunk/libcloud/compute/drivers/softlayer.py
Modified: libcloud/trunk/libcloud/compute/drivers/softlayer.py
URL:
http://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/softlayer.py?rev=1442536&r1=1442535&r2=1442536&view=diff
==============================================================================
--- libcloud/trunk/libcloud/compute/drivers/softlayer.py (original)
+++ libcloud/trunk/libcloud/compute/drivers/softlayer.py Tue Feb 5 11:02:07
2013
@@ -123,7 +123,8 @@ class SoftLayerConnection(XMLRPCConnecti
endpoint = '%s/%s' % (self.endpoint, service)
return super(SoftLayerConnection, self).request(method, *args,
- endpoint=endpoint)
+ **{'endpoint':
+ endpoint})
def _get_auth_headers(self):
return {