https://issues.apache.org/ooo/show_bug.cgi?id=125117
--- Comment #4 from Ariel Constenla-Haile <[email protected]> --- Does your script have a shebang? Did you make it executable? Put the following in a file ~/test.py, and make the file executable: #!/usr/bin/env python import sys if __name__ == '__main__': if len(sys.argv) > 1: for s in sys.argv[1:]: print s sys.exit(0) Here I see the following behavior: a) converting the file to URL open the script for editing in XCode b) using a system path instead of an URL, the script is executed (but with the bug mentioned above: there is no way to pass multiple commands -- You are receiving this mail because: You are the assignee for the issue. You are watching all issue changes.
