Fix support for Python 3.7 host version

This commit is contained in:
Joe Rickerby
2023-05-15 22:01:04 +01:00
parent 580205affc
commit 3486f0f207
-1
View File
@@ -711,7 +711,6 @@ def parse_key_value_string(
shlexer = shlex.shlex(key_value_string, posix=True, punctuation_chars=";:")
shlexer.commenters = ""
shlexer.whitespace_split = True
parts = list(shlexer)
# parts now looks like
# ['docker', ';', 'create_args',':', '--some-option=value', 'another-option']