I\'m trying to submit a form with mechanize but have run into an error (TypeError: ListControl, must set a sequence) After googling for some time and trying a couple of diff
type field expects a list of integers from you, but you provide just one integer. Change this:
type
br.form['type'] = '22'
to this:
br.form['type'] = ['22',]