diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-11-08 16:07:37 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:05:05 -0800 |
commit | a972069f07e1cc5068ee5be7e9e31da39d46490b (patch) | |
tree | 6baed13d270e7605c14cb28b1592a0f324a1e837 /mpm | |
parent | 2c9fe05fa8590033cfe0fcdfcb809560a91b4204 (diff) | |
download | uhd-a972069f07e1cc5068ee5be7e9e31da39d46490b.tar.gz uhd-a972069f07e1cc5068ee5be7e9e31da39d46490b.tar.bz2 uhd-a972069f07e1cc5068ee5be7e9e31da39d46490b.zip |
mpm: Make list_updateable_components return something
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 6c22e1c5c..a49d39206 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -368,8 +368,7 @@ class PeriphManagerBase(object): return list of updateable components This method does not require a claim_token in the RPC """ - # return self.updateable_components.keys() - return [] # FIXME + return list(self.updateable_components.keys()) @no_claim def list_available_overlays(self): |