You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifsys.version_info.major>3andsys.version_info.minor>=8:
importshlexshlex_join=shlex.joindelshlexelse:
defshlex_join(parts):
result=""sep=""forpartinparts:
result+=sepsep=" "result+=shlex_quote(part)
returnresult# Maybe not now but script importing it could do something like: import shlex; import six; shlex.join = six.shlex_join
The text was updated successfully, but these errors were encountered:
Maybe add something like:
The text was updated successfully, but these errors were encountered: