Merge "cloud floating ip: fix add_ip_list() for single ip" into stable/2024.2

This commit is contained in:
Zuul
2025-03-28 18:08:13 +00:00
committed by Gerrit Code Review

View File

@@ -1294,7 +1294,7 @@ class NetworkCommonCloudMixin(openstackcloud._OpenStackCloudMixin):
error.
"""
if type(ips) is list:
if type(ips) is not list:
ips = [ips]
for ip in ips: