Skip to content

Commit 93304e5

Browse files
fix: Listing of dictionaries (modules) (#1726)
1 parent 102318e commit 93304e5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bzt/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def perform(self, configs):
286286

287287
if self.options.verbose:
288288
modules = sys.modules.copy()
289-
for module_name in modules:
289+
for module_name in list(modules):
290290
version = str(getattr(modules[module_name], '__version__', ""))
291291
file = getattr(modules[module_name], '__file__', "")
292292
if version:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix cli.py update. loop/dictionary errors

0 commit comments

Comments
 (0)