From 9c7d80f0fd0d4220925e9eb27570119fc8b2e6f3 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 15 Apr 2011 08:30:16 +0200 Subject: [PATCH] oops --- sfa/managers/slice_manager_pl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/managers/slice_manager_pl.py b/sfa/managers/slice_manager_pl.py index 89910970..7f0a7546 100644 --- a/sfa/managers/slice_manager_pl.py +++ b/sfa/managers/slice_manager_pl.py @@ -394,7 +394,7 @@ def SliverStatus(api, slice_xrn, creds, call_id): results = threads.get_results() # get rid of any void result - e.g. when call_id was hit where by convention we return {} - results = [ result in results if result and result['geni_resources']] + results = [ result for result in results if result and result['geni_resources']] # do not try to combine if there's no result if not results : return {} -- 2.43.0