aboutsummaryrefslogtreecommitdiff
path: root/chapter/1/rpc.md
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2017-01-06 14:36:17 +0100
committerHeather Miller <heather.miller@epfl.ch>2017-01-06 14:36:17 +0100
commit01f264845f70960d2abb19d289a623a220bb2cce (patch)
tree83a6df916e15e3596935a4acc33ad8acd5416224 /chapter/1/rpc.md
parent7f70caa5d88a1dcb6beef47f6271c732b876bbce (diff)
parentff83d9072a780372f61c4462e9aee26980673741 (diff)
Merge branch 'master' of github.com:heathermiller/dist-prog-book into futures-fixes
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))