Launchd の起動に失敗しました: 「何らかの奇妙な理由で exec(3) に失敗しました」

Launchd の起動に失敗しました: 「何らかの奇妙な理由で exec(3) に失敗しました」

毎日特定の時間にバックアップ スクリプトを開始するように設定された非常に単純な lanuchd タスクがあります。

コマンドラインから問題なくコマンドを実行できますが、lauchdで起動しようとすると次のシステムログエラーが発生します。

9/4/14 9:30:17.534 AM com.apple.launchd.peruser.503[422]: (local.meviocorp.BSbackupScripts[1938]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
9/4/14 9:30:17.534 AM com.apple.launchd.peruser.503[422]: (local.meviocorp.BSbackupScripts[1938]) Job failed to exec(3) for weird reason: 2
9/4/14 9:30:17.535 AM com.apple.launchd.peruser.503[422]: (local.meviocorp.BSbackupScripts) Job should be able to exec(3) now.

plist は非常に単純なので、それが問題であるとは考えられません。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>local.meviocorp.BSbackupScripts</string>
    <key>ProgramArguments</key>
    <array>
        <string>bs_production_backup.py</string>
        <string></string>
    </array>
    <key>StartCalendarInterval</key>
    <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>30</integer>
    </dict>
</dict>
</plist>

次にどこを探すべきかについて何か考えはありますか?

関連情報