New repository - deadlinecommand not found in PATH

I am still running into this with 10.1.12.1, are there plans for an official fix?

I have currently updated [Repo]/events/DraftEventPlugin/DraftQuickSubmission/QuickDraft.py:

24c24,28

<     deadline_command = os.path.join(deadline_binpath, "deadlinecommand")
---
>     if os.name == 'nt':
>         deadline_command = os.path.join(deadline_binpath, "deadlinecommand.exe")
>     else:
>         deadline_command = os.path.join(deadline_binpath, "deadlinecommand")
>
3 Likes