Author: dreiss
Date: Thu May 14 00:15:38 2009
New Revision: 774605

URL: http://svn.apache.org/viewvc?rev=774605&view=rev
Log:
THRIFT-502. site: Fix a typo in the example Python code

Modified:
    incubator/thrift/site/dynathrift/index.php
    incubator/thrift/site/publish/index.html

Modified: incubator/thrift/site/dynathrift/index.php
URL: 
http://svn.apache.org/viewvc/incubator/thrift/site/dynathrift/index.php?rev=774605&r1=774604&r2=774605&view=diff
==============================================================================
--- incubator/thrift/site/dynathrift/index.php (original)
+++ incubator/thrift/site/dynathrift/index.php Thu May 14 00:15:38 2009
@@ -70,7 +70,7 @@
 protocol = TBinaryProtocol.TBinaryProtocol(transport)
 
 # Use the service we already defined
-service = UserStorage.client(protocol)
+service = UserStorage.Client(protocol)
 service.store(up)
 
 # Retrieve something as well

Modified: incubator/thrift/site/publish/index.html
URL: 
http://svn.apache.org/viewvc/incubator/thrift/site/publish/index.html?rev=774605&r1=774604&r2=774605&view=diff
==============================================================================
--- incubator/thrift/site/publish/index.html (original)
+++ incubator/thrift/site/publish/index.html Thu May 14 00:15:38 2009
@@ -53,7 +53,7 @@
 protocol = TBinaryProtocol.TBinaryProtocol(transport)
 
 # Use the service we already defined
-service = UserStorage.client(protocol)
+service = UserStorage.Client(protocol)
 service.store(up)
 
 # Retrieve something as well


Reply via email to