diff options
-rwxr-xr-x | bin/ryu-client | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ryu-client b/bin/ryu-client index ea3a3eaa..9277964f 100755 --- a/bin/ryu-client +++ b/bin/ryu-client @@ -99,7 +99,9 @@ def client_test(): for (k, v) in commands.items()])) cmd = args[0] - commands[cmd](args) + res = commands[cmd](args) + if res: + print res.read() if __name__ == "__main__": client_test() |