What is the good practice to solve this easy question?
def __unicode__(self):
return unicode(self.typePlace + " " + self.name)
TypeError: unsupported operand type(s) for +: 'TipoLugar' and 'str'
|
|
Use string formatting instead of composition, which is both more efficient and will stringify your elements for you as well:
|
|||
|
|
|
Presumably
|
||||
|
|