diff --git a/aioupnp/gateway.py b/aioupnp/gateway.py index 72e412a..4093b3d 100644 --- a/aioupnp/gateway.py +++ b/aioupnp/gateway.py @@ -102,7 +102,7 @@ class Gateway: @property def manufacturer_string(self) -> str: if not self.devices: - raise NotImplementedError() + return "UNKNOWN GATEWAY" device = list(self.devices.values())[0] return "%s %s" % (device.manufacturer, device.modelName)