[IMP] avoid long words in HTML

bzr revid: fp@tinyerp.com-20121220150547-v0c7nkpi5j2rhluc
This commit is contained in:
Fabien Pinckaers 2012-12-20 16:05:47 +01:00
parent 96cd923470
commit a02c785b86
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ class account_analytic_account(osv.osv):
if level<=0:
return '...'
if elmt.parent_id and not elmt.type == 'template':
parent_path = self._get_one_full_name(elmt.parent_id, level-1) + "/"
parent_path = self._get_one_full_name(elmt.parent_id, level-1) + " / "
else:
parent_path = ''
return parent_path + elmt.name