This commit is contained in:
Stephane Albert 2016-09-23 13:54:35 +00:00 committed by GitHub
commit a8e3385a7e
1 changed files with 5 additions and 0 deletions

View File

@ -98,6 +98,11 @@ class BaseFolder(object):
# FIMXE: remove calls of this. We have getname().
return self.name
def __unicode__(self):
# NOTE(sheeprine): Implicit call to this by UIBase deletingflags() which
# fails if the str is utf-8
return self.name.decode('utf-8')
@property
def accountname(self):
"""Account name as string"""