Skip to content

Commit

Permalink
Appease flake8
Browse files Browse the repository at this point in the history
Signed-off-by: Kurt Garloff <[email protected]>
  • Loading branch information
garloff committed Dec 6, 2023
1 parent abab48b commit e30afe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/iaas/flavor-naming/flavor-form.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def parse_name(fnm):
"return tuple with flavor description"
global FLAVOR_SPEC, FLAVOR_NAME, ERROR
# Sanitize
#fnm = re.sub(r"<( *script)", r"<!--\1", fnm, flags=re.I)
# fnm = re.sub(r"<( *script)", r"<!--\1", fnm, flags=re.I)
fnm = re.sub(r"<", r"&lt;", fnm)
fnm = re.sub(r">", r"&gt;", fnm)
FLAVOR_NAME = fnm
Expand Down

0 comments on commit e30afe0

Please sign in to comment.