diff options
author | Nicholas McCarthy <namccart@gmail.com> | 2013-07-07 18:08:20 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-08 07:19:33 -0700 |
commit | cd99526b5d1c8b1130ac1ba87e21f96c621b1bdc (patch) | |
tree | 12836648bf75868b17b04a2c3ead9c1b6fa2d4c5 /grc/base/ParseXML.py | |
parent | 2dc1b6f2ed0cabd2bccbcc58487e93be4295df84 (diff) |
grc: add bus ports
Bus ports allow ganging together of block input or output ports into
a single display item for connection to other bus ports.
Diffstat (limited to 'grc/base/ParseXML.py')
-rw-r--r-- | grc/base/ParseXML.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/grc/base/ParseXML.py b/grc/base/ParseXML.py index 0d19f6b212..e8f9b0583e 100644 --- a/grc/base/ParseXML.py +++ b/grc/base/ParseXML.py @@ -78,6 +78,7 @@ def _from_file(xml): #delistify if the length of values is 1 for key, values in nested_data.iteritems(): if len(values) == 1: nested_data[key] = values[0] + return odict({tag: nested_data}) def to_file(nested_data, xml_file): |