Page 1 of 1

Conflicting Arguments

Posted: 23 Sep 2013, 18:31
by chimpchimp
Starting last night I began getting errors out of the Filebot AMC script used in conjunction with Deluge. I haven't made any changes in the parameters of the script but it is suddenly failing with "Conflicting Arguments".

Code: Select all

Exception: Conflicting arguments: pass in either file arguments or ut_dir/ut_file parameters but not both
The script as I have it:

Code: Select all

#!/bin/bash
TORRENT_ID=$1
TORRENT_NAME=$2
TORRENT_PATH=$3
filebot -script fn:amc --output "/mnt1/nas" --log-file amc.log --action copy --conflict override -non-strict --def artwork=n --def music=n "ut_dir=$TORRENT_PATH/$TORRENT_NAME" "ut_kind=multi" "ut_title=$TORRENT_NAME"


Re: Conflicting Arguments

Posted: 23 Sep 2013, 19:39
by rednoah
My fault, I forgot ut_file is not set for you guys and I included it in my new sanity checks.

Just ignore it and it'll start working again tomorrow. If it doesn't after 48h come back here. ;)

Re: Conflicting Arguments

Posted: 23 Sep 2013, 20:58
by werkkrew
I started having the same problem but with Transmission instead of Deluge, thanks for the quick fix.

Is there any way to force our scripts to start using the fixed script over her more quickly?

Re: Conflicting Arguments

Posted: 23 Sep 2013, 23:32
by chimpchimp
Thanks for the reply! Glad I wasn't going crazy.