From 2724e6409534a948b5a2c212ae0a7192326c1b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Fri, 19 Apr 2024 23:52:23 +0200 Subject: Run 2to3 on the entire project --- src/lib/Bcfg2/Server/Plugins/AWSTags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/Bcfg2/Server/Plugins/AWSTags.py') diff --git a/src/lib/Bcfg2/Server/Plugins/AWSTags.py b/src/lib/Bcfg2/Server/Plugins/AWSTags.py index 556805bde..d823a3986 100644 --- a/src/lib/Bcfg2/Server/Plugins/AWSTags.py +++ b/src/lib/Bcfg2/Server/Plugins/AWSTags.py @@ -26,7 +26,7 @@ class AWSTagPattern(object): def get_groups(self, tags): """ Get groups that apply to the given tag set """ - for key, value in tags.items(): + for key, value in list(tags.items()): name_match = self.name.search(key) if name_match: if self.value is not None: -- cgit v1.2.3-1-g7c22