diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-11-12 06:29:42 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-11-12 06:29:42 -0800 |
commit | caf9120c31b5a0dfbcbc24fdd5d958017a7db963 (patch) | |
tree | db244a2944b5d5bb2323c631c215e5424781304f /grc/core/utils/epy_block_io.py | |
parent | 69ab3557fbfd7a47c5f22d34fc273b757f2c67df (diff) | |
parent | 8ddebb888bd73bbdda48dcf00d1bd1234858bd3c (diff) |
Merge branch 'master' into next
Diffstat (limited to 'grc/core/utils/epy_block_io.py')
-rw-r--r-- | grc/core/utils/epy_block_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/utils/epy_block_io.py b/grc/core/utils/epy_block_io.py index 76b50051db..4eb4d6d4e5 100644 --- a/grc/core/utils/epy_block_io.py +++ b/grc/core/utils/epy_block_io.py @@ -19,7 +19,7 @@ def _ports(sigs, msgs): for i, dtype in enumerate(sigs): port_type = TYPE_MAP.get(dtype.name, None) if not port_type: - raise ValueError("Can't map {0:!r} to GRC port type".format(dtype)) + raise ValueError("Can't map {0!r} to GRC port type".format(dtype)) ports.append((str(i), port_type)) for msg_key in msgs: if msg_key == 'system': |