Removing unnecessary braces in RemoteController

This commit is contained in:
Brian O'Connor
2015-09-23 16:02:55 -07:00
parent 2c5d86f197
commit d254d7496c
+1 -1
View File
@@ -1501,7 +1501,7 @@ class RemoteController( Controller ):
if self.port is not None:
self.isListening( self.ip, self.port )
else:
for port in [ 6653, 6633 ]:
for port in 6653, 6633:
if self.isListening( self.ip, port ):
self.port = port
info( "Connecting to remote controller"