diff options
author | Josh Blum | 2011-09-16 13:16:27 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-09-22 14:17:30 -0400 |
commit | a209853b61970254a17e06a68849848850c60fe0 (patch) | |
tree | de794b079eff8671a5ebba1ab4ebe2d80f72ff3d /grc | |
parent | c091c56ee98f0f2eca891ebc23524925f7d1a74a (diff) | |
download | gnuradio-a209853b61970254a17e06a68849848850c60fe0.tar.gz gnuradio-a209853b61970254a17e06a68849848850c60fe0.tar.bz2 gnuradio-a209853b61970254a17e06a68849848850c60fe0.zip |
grc: one line fix to fix port duplicator when removing ports
was an issue when removing more than one port
Diffstat (limited to 'grc')
-rw-r--r-- | grc/python/Block.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Block.py b/grc/python/Block.py index 14a5859e4..424706d68 100644 --- a/grc/python/Block.py +++ b/grc/python/Block.py @@ -108,7 +108,7 @@ class Block(_Block, _GUIBlock): if nports == num_ports: continue #remove excess ports and connections if nports < num_ports: - for key in map(str, range(index_first+nports, index_first+num_ports)): + for key in reversed(map(str, range(index_first+nports, index_first+num_ports))): remove_port(get_ports, get_port, key) continue #add more ports |