Skip to content

Commit

Permalink
fix: Listing of dictionaries (modules) (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
JUN-KOBAYASHI authored May 23, 2023
1 parent 102318e commit 93304e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bzt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def perform(self, configs):

if self.options.verbose:
modules = sys.modules.copy()
for module_name in modules:
for module_name in list(modules):
version = str(getattr(modules[module_name], '__version__', ""))
file = getattr(modules[module_name], '__file__', "")
if version:
Expand Down
1 change: 1 addition & 0 deletions site/dat/docs/changes/fix-update-cli.change
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix cli.py update. loop/dictionary errors

0 comments on commit 93304e5

Please # to comment.