This is my batch script: ```bat @echo off python %APPDATA%"\pdviewer\pdviewer.py" %1 pause ``` The python file should take the first argument and process it but it gives the error: ``` file_path = sys.argv[1] IndexError: list index out of range ```