id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
755	Can't set listen_ports through console UI	florian@…	Cas	"{{{
>>> config
...
 * listen_ports: [6881, 6891]
...
}}}

This suggests the following to work, which it doesn't.

{{{
>>> config -s listen_ports [10000, 10010]
 * malformed expression ([)
}}}

Trying a tuple instead of a list is also a no-go.

{{{
>>> config -s listen_ports (10000, 10000)
 * Configuration value provided has incorrect type.
}}}

Neither does leaving the comma and/or parentheses off.

{{{
>>> config -s listen_ports 10000, 10010
 * bogus data after expression
>>> config -s listen_ports 10000 10010
 * bogus data after expression
>>> config -s listen_ports (10000 10010)
 * Configuration value provided has incorrect type.
}}}"	bug	closed	minor	1.3.2	console	1.3.1	fixed		
