From 69ee7887389dfbd65c62257d66b36865d4a2c001 Mon Sep 17 00:00:00 2001 From: Wayne Gemmell Date: Fri, 17 Feb 2023 13:01:02 +0200 Subject: [PATCH] Linting fix --- salt/cloud/clouds/digitalocean.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/cloud/clouds/digitalocean.py b/salt/cloud/clouds/digitalocean.py index 7ecfffc09a0..19bf24137f6 100644 --- a/salt/cloud/clouds/digitalocean.py +++ b/salt/cloud/clouds/digitalocean.py @@ -1276,7 +1276,7 @@ def _get_vpc_by_name(name): page = 1 ret = {} - log.debug("Matching vpc name with: %s",name) + log.debug("Matching vpc name with: %s", name) while fetch: items = query(method="vpcs", command="?page=" + str(page) + "&per_page=200") for node in items["vpcs"]: