diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:18:48 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:18:48 -0700 |
commit | a80edf4570d75f1325dce7e026e166956bb1db5f (patch) | |
tree | 318aa3900c1686e037f92250e9e13827607a13f1 /grc/base/Connection.py | |
parent | 6c7e4bf41a94032492839f131710a7777da2df7e (diff) | |
parent | 1ff0e745963084b86ad4d25e12f889f1b93775aa (diff) |
Merge branch 'maint'
Diffstat (limited to 'grc/base/Connection.py')
-rw-r--r-- | grc/base/Connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/base/Connection.py b/grc/base/Connection.py index 3a2de5b9a5..bf3c75277c 100644 --- a/grc/base/Connection.py +++ b/grc/base/Connection.py @@ -51,7 +51,7 @@ class Connection(Element): #ensure that this connection (source -> sink) is unique for connection in self.get_parent().get_connections(): if connection.get_source() is source and connection.get_sink() is sink: - raise Exception('This connection between source and sink is not unique.') + raise LookupError('This connection between source and sink is not unique.') self._source = source self._sink = sink if source.get_type() == 'bus': |