aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-11-08 16:07:37 -0800
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:05:05 -0800
commita972069f07e1cc5068ee5be7e9e31da39d46490b (patch)
tree6baed13d270e7605c14cb28b1592a0f324a1e837 /mpm
parent2c9fe05fa8590033cfe0fcdfcb809560a91b4204 (diff)
downloaduhd-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.py3
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):