Skip to content

Commit

Permalink
per comments, removed all py2 referrences
Browse files Browse the repository at this point in the history
Signed-off-by: Kowshik Jois B S <[email protected]>
  • Loading branch information
bskjois committed Oct 28, 2024
1 parent b7ca5fd commit bef52fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions virttest/utils_test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1601,9 +1601,9 @@ def config_control(control_path, job_args=None):
except Exception:
# Leak global_config.ini, generate a mini configuration
# to ensure client tests can work.
import ConfigParser
import configParser

config = ConfigParser.ConfigParser()
config = configParser.ConfigParser()
for section in ["CLIENT", "COMMON"]:
config.add_section(section)
config.set("COMMON", "crash_handling_enabled", "True")
Expand Down

0 comments on commit bef52fe

Please sign in to comment.