Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: Listing of dictionaries (modules) #1726

Merged
merged 2 commits into from
May 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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