fix get compute list via rest api, without datacenter specified
[osm/vim-emu.git] / src / emuvim / api / rest / compute.py
index 9f0516b..1082a4d 100755 (executable)
@@ -106,10 +106,10 @@ class ComputeList(Resource):
 
     global dcs
 
-    def get(self, dc_label):
+    def get(self, dc_label=None):
         logging.debug("API CALL: compute list")
         try:
-            if dc_label == 'None':
+            if dc_label is None:
                 # return list with all compute nodes in all DCs
                 all_containers = []
                 for dc in dcs.itervalues():