diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-22 12:51:09 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-09-22 12:51:09 -0700 |
commit | 942fa1c2e226ac00ac8ac0d8ca1538f7015d0c5a (patch) | |
tree | 26f36e48a5fe9a23afd310f952c217989292006e /grc | |
parent | bb98061115a2c7299fb24ed90ba48786118bf32e (diff) | |
parent | 4059269b4261c891923658a6faa0fa780888449b (diff) |
Merge branch 'next' of gnuradio.org:gnuradio into next
Conflicts:
gnuradio-core/src/lib/general/gr_correlate_access_code_tag_bb.h
volk/bootstrap
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 14a5859e4d..424706d681 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 |