aboutsummaryrefslogtreecommitdiff
path: root/chapter/1/rpc.md
diff options
context:
space:
mode:
Diffstat (limited to 'chapter/1/rpc.md')
-rw-r--r--chapter/1/rpc.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter/1/rpc.md b/chapter/1/rpc.md
index 36d195d..d56b13f 100644
--- a/chapter/1/rpc.md
+++ b/chapter/1/rpc.md
@@ -53,7 +53,7 @@ Here's the code of this simple RPC server, written in Python3.
from xmlrpc.server import SimpleXMLRPCServer
# a simple RPC function that returns "Hello World!"
-def remote_procedure(n):
+def remote_procedure():
return "Hello World!"
server = SimpleXMLRPCServer(("localhost", 8080))