kgeisz opened a new pull request, #2217: URL: https://github.com/apache/phoenix/pull/2217
This pull request removes a blank line in `traceserver.py` that occurs within the variable declaration of `java_cmd`. This blank line was causing an error when running `python3 -m compileall bin/traceserver.py`: ``` % python3 -m compileall bin/traceserver.py Compiling 'traceserver.py'... *** File "traceserver.py", line 126 ^ SyntaxError: invalid syntax ``` This error no longer occurs after removing the blank line: ``` % python -m compileall bin/traceserver.py Compiling 'bin/traceserver.py'... ``` -- 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: issues-unsubscr...@phoenix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org