aboutsummaryrefslogtreecommitdiff
path: root/chapter/1
diff options
context:
space:
mode:
authorMuzammilAR <muzammil.abdul.rehman@gmail.com>2017-01-05 17:55:36 -0500
committerGitHub <noreply@github.com>2017-01-05 17:55:36 -0500
commitff83d9072a780372f61c4462e9aee26980673741 (patch)
tree177ef5de5f495559dd2724ebad9b4310c49b6a25 /chapter/1
parentbc9bae33c2d29d56c60ae8851063bc3145d41eef (diff)
Update rpc.md
Diffstat (limited to 'chapter/1')
-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))