From db134f36ae54ef135037d0c912068fc678df54cf Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 13 Jan 2016 22:40:41 -0800 Subject: [PATCH] Allow RemoteController to connect to correct port. Fixes #584 --- examples/controllers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/controllers.py b/examples/controllers.py index d3694bc..7ed5242 100755 --- a/examples/controllers.py +++ b/examples/controllers.py @@ -17,7 +17,7 @@ setLogLevel( 'info' ) # Ignore the warning message that the remote isn't (yet) running c0 = Controller( 'c0', port=6633 ) c1 = Controller( 'c1', port=6634 ) -c2 = RemoteController( 'c2', ip='127.0.0.1' ) +c2 = RemoteController( 'c2', ip='127.0.0.1', port=6633 ) cmap = { 's1': c0, 's2': c1, 's3': c2 }