Changes to pass code check.

We should check NOXController and RemoteController to make sure that
they are not broken, but I cannot do this at the moment.
This commit is contained in:
Bob Lantz
2010-03-24 15:02:28 -07:00
parent 0774c8bbce
commit b2ef87ae51
4 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ def buildTopo( topo ):
topo_seq_params = [ s for s in topo_params if '=' not in s ]
topo_seq_params = [ makeNumeric( s ) for s in topo_seq_params ]
topo_kw_params = {}
for s in [ s for s in topo_params if '=' in s ]:
for s in [ p for p in topo_params if '=' in p ]:
key, val = s.split( '=' )
topo_kw_params[ key ] = makeNumeric( val )