diff options
author | Martin Braun <martin.braun@ettus.com> | 2014-08-26 12:41:51 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-08-26 12:41:51 +0200 |
commit | d8c6c84fb882f22b728f6e7aef486188070c9b33 (patch) | |
tree | 2683debe150df1091fe9be598edb01c0f4a9bb06 /gr-uhd | |
parent | 71187a830fffc31715b7772b86d3558d94b30756 (diff) |
uhd: Fixed minor issue with kwargs in amsg_source
Diffstat (limited to 'gr-uhd')
-rw-r--r-- | gr-uhd/python/uhd/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-uhd/python/uhd/__init__.py b/gr-uhd/python/uhd/__init__.py index 21f066bf1f..6d7f232466 100644 --- a/gr-uhd/python/uhd/__init__.py +++ b/gr-uhd/python/uhd/__init__.py @@ -117,7 +117,7 @@ def _prepare_uhd_swig(): if kwargs.has_key(key): kwargs[key] = cast(kwargs[key]) except: pass #dont pass kwargs, it confuses swig, map into args list: - for key in ('device_addr', 'stream_args', 'io_type', 'num_channels'): + for key in ('device_addr', 'stream_args', 'io_type', 'num_channels', 'msgq'): if kwargs.has_key(key): args.append(kwargs[key]) return old_constructor(*args) return constructor_interceptor |