﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
14166	Indian states are not specified as a tuple of tuples	Flavio Curella	nobody	"Indian states in in_states.py are specified as a simple tuple of single elements:

{{{
STATE_CHOICES = (
    'KA', 'Karnataka',
    'AP', 'Andhra Pradesh',
    'KL', 'Kerala',
    'TN', 'Tamil Nadu',
}}}

where it should be as a tuple of 2-elements tuple, as:

{{{
STATE_CHOICES = (
    ('KA', 'Karnataka'),
    ('AP', 'Andhra Pradesh'),
    ('KL', 'Kerala'),
    ('TN', 'Tamil Nadu'),
}}}

This result in a `too many values to unpack` error when using the class `INStateSelect`

"		closed	contrib.localflavor	1.2		fixed			Ready for checkin	1	0	0	0	0	0
