fix: None error on unavailable resources

If not a single resource of a wanted item was left, we ran into a None. Report
unavailability instead.

Change-Id: Ie1849a74cb227964e7c3ac06852582baa2333697
diff --git a/src/osmo_gsm_tester/resource.py b/src/osmo_gsm_tester/resource.py
index b146ebd..8520612 100644
--- a/src/osmo_gsm_tester/resource.py
+++ b/src/osmo_gsm_tester/resource.py
@@ -299,7 +299,7 @@
             # here we have a resource of a given type, e.g. 'bts', with a list
             # containing as many BTSes as the caller wants to reserve/use. Each
             # list item contains specifics for the particular BTS.
-            my_list = self.get(key)
+            my_list = self.get(key, [])
 
             for_origin.log(log_label, len(want_list), 'x', key, '(candidates: %d)'%len(my_list))