diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-13 12:46:06 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-13 12:46:06 -0800 |
commit | 6c121388075c9d7624bef832a5dd835da73798cc (patch) | |
tree | aa3111dde90a750b8d5c2402033dd7585ec0e782 /grc/python/Connection.py | |
parent | 65dbd67db55fd0b6456a9de025cfead699af527e (diff) | |
parent | b307c892fb348ddb3613db33db4e874879185fde (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into maint
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
Diffstat (limited to 'grc/python/Connection.py')
-rw-r--r-- | grc/python/Connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Connection.py b/grc/python/Connection.py index 0a6cf5fa46..822876a0ae 100644 --- a/grc/python/Connection.py +++ b/grc/python/Connection.py @@ -38,8 +38,8 @@ class Connection(_Connection, _GUIConnection): Validate the connections. The ports must match in io size. """ + _Connection.validate(self) source_size = Constants.TYPE_TO_SIZEOF[self.get_source().get_type()] * self.get_source().get_vlen() sink_size = Constants.TYPE_TO_SIZEOF[self.get_sink().get_type()] * self.get_sink().get_vlen() if source_size != sink_size: self.add_error_message('Source IO size "%s" does not match sink IO size "%s".'%(source_size, sink_size)) - _Connection.validate(self) |