[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 03/06: uhd: Fixed minor issue with kwargs i
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 03/06: uhd: Fixed minor issue with kwargs in amsg_source |
Date: |
Tue, 26 Aug 2014 18:02:39 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit d8c6c84fb882f22b728f6e7aef486188070c9b33
Author: Martin Braun <address@hidden>
Date: Tue Aug 26 12:41:51 2014 +0200
uhd: Fixed minor issue with kwargs in amsg_source
---
gr-uhd/python/uhd/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gr-uhd/python/uhd/__init__.py b/gr-uhd/python/uhd/__init__.py
index 21f066b..6d7f232 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