diff options
| author | MuzammilAR <muzammil.abdul.rehman@gmail.com> | 2017-01-05 17:55:36 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-05 17:55:36 -0500 |
| commit | ff83d9072a780372f61c4462e9aee26980673741 (patch) | |
| tree | 177ef5de5f495559dd2724ebad9b4310c49b6a25 | |
| parent | bc9bae33c2d29d56c60ae8851063bc3145d41eef (diff) | |
Update rpc.md
| -rw-r--r-- | chapter/1/rpc.md | 2 |
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)) |
