Page 1 of 1

deluge-console manage bool not working

Posted: Sun Feb 15, 2015 9:46 pm
by thekrynn
I'm attempting to set per-torrent settings using deluge-console manage with mixed results. When managing values with expected int arguments, they work. When attempting to change using boolean, no such luck:

deluge-console -d localhost -p 58846 -u xxx -P xxx "manage zzzzzzzzz"

ID: zzzzzzzz
....
max_download_speed: 8.0
private: False
....

deluge-console -d localhost -p 58846 -u xxx -P xxx "manage zzzzzzzzz -s max_download_speed 10"
Torrent option successfully updated.

deluge-console -d localhost -p 58846 -u xxx -P xxx "manage zzzzzzzzz -s private True"
Torrent option successfully updated.

ID: zzzzzzzz
....
max_download_speed: 10.0
private: False
....

I've tried "True", "true", "1", etc... No luck.
Any ideas?