Exemplo n.º 1
0
 def __str__(self):
     return '<TVEpisode>: {} S{}E{} {}'.format(self.show, self.season,
                                               self.number,
                                               unicode_safe(self.title))
Exemplo n.º 2
0
 def __str__(self):
     """String representation of a :class:`Movie`"""
     return '<Movie>: {}'.format(unicode_safe(self.title))
Exemplo n.º 3
0
 def __str__(self):
     """Return a string representation of a :class:`TVShow`"""
     return '<TVShow> {}'.format(unicode_safe(self.title))
Exemplo n.º 4
0
 def __str__(self):
     """Return a string representation of a :class:`TVShow`"""
     return '<TVShow> {}'.format(unicode_safe(self.title))
Exemplo n.º 5
0
 def __str__(self):
     """String representation of a :class:`User`"""
     return '<User>: {}'.format(unicode_safe(self.username))
Exemplo n.º 6
0
 def __str__(self):
     """String representation of a :class:`User`"""
     return '<User>: {}'.format(unicode_safe(self.username))
Exemplo n.º 7
0
 def __str__(self):
     return '<TVEpisode>: {} S{}E{} {}'.format(self.show, self.season,
                                               self.number,
                                               unicode_safe(self.title))
Exemplo n.º 8
0
 def __str__(self):
     """String representation of a :class:`Movie`"""
     return '<Movie>: {}'.format(unicode_safe(self.title))