You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> show_akas(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "pytvmaze/tvmaze.py", line 383, in __repr__
return '<AKA(name={name},country={country})>'.format(name=name, country=country)
NameError: name 'name' is not defined
The text was updated successfully, but these errors were encountered:
>>> show_akas(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "pytvmaze/tvmaze.py", line 383, in __repr__
return '<AKA(name={name},country={country})>'.format(name=name, country=country)
NameError: name 'name' is not defined
Edit line 383 --> ... format(name=self.name, country=self.country)
show_akas fails to run
The text was updated successfully, but these errors were encountered: