meszinorbi commented on code in PR #2096:
URL: https://github.com/apache/phoenix/pull/2096#discussion_r2012388539
##########
bin/phoenix_utils.py:
##########
@@ -221,8 +221,11 @@ def shell_quote(args):
return subprocess.list2cmdline(args)
else:
# pipes module isn't available on Windows
- import pipes
- return " ".join([pipes.quote(tryDecode(v)) for v in args])
+ try:
Review Comment:
Moved my modification to the function tryQuote to the beginning of the file.
I tested it locally with python3.13, python3.12 and python2.7.18, seem to work
fine.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]