mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
issue on the list of args being passed
This commit is contained in:
parent
be5baca377
commit
58d10805ea
1 changed files with 2 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ class Library:
|
|||
f"https://{publisher}.itch.io/{title}/data.json",
|
||||
headers={"Authorization": self.login},
|
||||
)
|
||||
self.games.append(Game(publisher, title))
|
||||
j = json.loads(r.text)
|
||||
self.games.append(Game(j["id"]))
|
||||
|
||||
def load_games(self, publisher):
|
||||
"""Load all games by publisher"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue