You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/01/05 03:11:52 UTC

svn commit: r895851 - /incubator/libcloud/trunk/libcloud/base.py

Author: pquerna
Date: Tue Jan  5 02:11:49 2010
New Revision: 895851

URL: http://svn.apache.org/viewvc?rev=895851&view=rev
Log:
Fix epytext syntax error, a missing :

Modified:
    incubator/libcloud/trunk/libcloud/base.py

Modified: incubator/libcloud/trunk/libcloud/base.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/base.py?rev=895851&r1=895850&r2=895851&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/base.py (original)
+++ incubator/libcloud/trunk/libcloud/base.py Tue Jan  5 02:11:49 2010
@@ -264,14 +264,14 @@
         @type action: C{str}
         @param action: A path
 
-        @type params C{dict}
+        @type params: C{dict}
         @param params: Optional mapping of additional parameters to send. If
             None, leave as an empty C{dict}.
 
         @type data: C{unicode}
         @param data: A body of data to send with the request.
 
-        @type headers C{dict}
+        @type headers: C{dict}
         @param headers: Extra headers to add to the request
             None, leave as an empty C{dict}.