fix compatibility with old versions of mechanize
This commit is contained in:
parent
9c11d6b65d
commit
acf6f78419
1 changed files with 1 additions and 2 deletions
|
|
@ -18,7 +18,6 @@
|
||||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
from mechanize import Item
|
|
||||||
import re
|
import re
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
@ -205,7 +204,7 @@ class NewIssuePage(BaseIssuePage):
|
||||||
value = self.browser.create_category(self.get_project_name(), category, self.get_authenticity_token())
|
value = self.browser.create_category(self.get_project_name(), category, self.get_authenticity_token())
|
||||||
if value:
|
if value:
|
||||||
control = self.browser.find_control('issue[category_id]')
|
control = self.browser.find_control('issue[category_id]')
|
||||||
Item(control, {'name': category, 'value': value})
|
ClientForm.Item(control, {'name': category, 'value': value})
|
||||||
self.browser['issue[category_id]'] = [value]
|
self.browser['issue[category_id]'] = [value]
|
||||||
else:
|
else:
|
||||||
self.logger.warning('Category "%s" not found' % category)
|
self.logger.warning('Category "%s" not found' % category)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue