[IMP] If ids are int or long then convert into list.

bzr revid: bth@tinyerp.com-20120831114125-z3rk36ip710u1czd
This commit is contained in:
Bhumi Thakkar (Open ERP) 2012-08-31 17:11:25 +05:30
parent b5a8f42641
commit 0cb8be90ab
1 changed files with 1 additions and 1 deletions

View File

@ -834,7 +834,7 @@ class account_journal(osv.osv):
@return: Returns a list of tupples containing id, name
"""
if not isinstance(ids, list):
if isinstance(ids, (int, long)):
ids = [ids]
result = self.browse(cr, user, ids, context=context)
res = []