Skip to content

Commit

Permalink
fix object __str__
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed Jan 17, 2025
1 parent 511a0a8 commit 09784e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.26
1.2.27
2 changes: 1 addition & 1 deletion tmdbapis/objs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _load(self, data):
self.id = None

def _finish(self, name):
self._name = name
self._name = str(name)
self._loading = False

def _image_url(self, image_path):
Expand Down

0 comments on commit 09784e1

Please sign in to comment.