diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-02-25 11:09:54 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-05 16:52:49 +0100 |
| commit | 02bbb30efea4980c9d133947cbbf69fb599071ad (patch) | |
| tree | 3fea6826fcc5354840a27cb1dc99ff31eef81896 /example/ida/rpyc_ida.py | |
| parent | eab809932871f91d6f4aa770fc321af9e156e0f5 (diff) | |
| download | miasm-02bbb30efea4980c9d133947cbbf69fb599071ad.tar.gz miasm-02bbb30efea4980c9d133947cbbf69fb599071ad.zip | |
Support python2/python3
Diffstat (limited to 'example/ida/rpyc_ida.py')
| -rw-r--r-- | example/ida/rpyc_ida.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/example/ida/rpyc_ida.py b/example/ida/rpyc_ida.py index 21faf43a..6c18fb7a 100644 --- a/example/ida/rpyc_ida.py +++ b/example/ida/rpyc_ida.py @@ -1,4 +1,5 @@ """rpyc IDA server""" +from __future__ import print_function from rpyc.utils.server import OneShotServer from rpyc.core import SlaveService @@ -11,7 +12,7 @@ def serve_threaded(hostname="localhost", port=4455): WARNING: IDA will be locked until the client script terminates. """ - print 'Running server' + print('Running server') server = OneShotServer(SlaveService, hostname=hostname, port=port, reuse_addr=True, ipv6=False, authenticator=None, |