pythonizer
pythonizer copied to clipboard
References to @ARGV should be changes to sys.argv[1:]
Perl @ARGV does not contain the script reference at index 0, while python sys.argv does, so references should be replaced with sys.argv[1:].
Fixed in https://github.com/snoopyjc/pythonizer