diff options
Diffstat (limited to 'exam')
-rw-r--r-- | exam/xmlrpc_clients.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exam/xmlrpc_clients.py b/exam/xmlrpc_clients.py index 1bc5513..be2f8b1 100644 --- a/exam/xmlrpc_clients.py +++ b/exam/xmlrpc_clients.py @@ -1,5 +1,5 @@ from xmlrpclib import ServerProxy +from ..settings import SERVER_PORT # Connect to the python server. -python_server = ServerProxy('http://localhost:8001') -
\ No newline at end of file +python_server = ServerProxy('http://localhost:%d'%(SERVER_PORT)) |