diff --git a/kube_hunter/console/general/types.py b/kube_hunter/console/general/types.py index c8f146a..fa4addc 100644 --- a/kube_hunter/console/general/types.py +++ b/kube_hunter/console/general/types.py @@ -27,6 +27,9 @@ class Cloud: def __init__(self, name): self.name = name + def __str__(self): + return self.name + class UnknownCloud(Cloud): def __init__(self): super(UnknownCloud, self).__init__("Unknown Cloud") \ No newline at end of file