diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-13 15:29:56 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-07 18:56:28 -0800 |
commit | d470318227a3275fe6cdc7ad6fd293c06da2a963 (patch) | |
tree | fcb8b15bce72273d460ee62c0459fd69e415e353 /gr-uhd/swig | |
parent | 017fb41de0843703810799c8a5d99d6b640437f9 (diff) |
uhd: grc xml tweaks + streamer args
Diffstat (limited to 'gr-uhd/swig')
-rw-r--r-- | gr-uhd/swig/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-uhd/swig/__init__.py b/gr-uhd/swig/__init__.py index a50ec82a54..d098a7b8a6 100644 --- a/gr-uhd/swig/__init__.py +++ b/gr-uhd/swig/__init__.py @@ -66,6 +66,8 @@ def _prepare_uhd_swig(): #but what i can do is append the elements individually if key == 'channels': for v in val: self.channels.append(v) + elif key == 'args': + self.args = device_addr_t(val) else: setattr(self, key, val) setattr(uhd_swig, 'stream_args_t', stream_args_t) |