mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
Fix includes again
This commit is contained in:
parent
7c7a70d9fe
commit
0c1e49d8b2
1 changed files with 3 additions and 2 deletions
|
|
@ -4,6 +4,7 @@ import urllib
|
|||
import datetime
|
||||
from os import path
|
||||
from os import mkdir
|
||||
from os import makedirs
|
||||
import requests
|
||||
from sys import argv
|
||||
|
||||
|
|
@ -78,8 +79,8 @@ class Game:
|
|||
|
||||
self.load_downloads(token)
|
||||
|
||||
if not os.path.exists(self.destination_path):
|
||||
os.makedirs(self.destination_path)
|
||||
if not path.exists(self.destination_path):
|
||||
makedirs(self.destination_path)
|
||||
|
||||
for d in self.downloads:
|
||||
if (
|
||||
|
|
|
|||
Loading…
Reference in a new issue