mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
Remove redundant include
This commit is contained in:
parent
e7bbe19839
commit
7c7a70d9fe
1 changed files with 2 additions and 3 deletions
|
|
@ -1,10 +1,9 @@
|
|||
import os
|
||||
import re
|
||||
import json
|
||||
import urllib
|
||||
import datetime
|
||||
from os import path
|
||||
from pathlib import Path
|
||||
from os import mkdir
|
||||
import requests
|
||||
from sys import argv
|
||||
|
||||
|
|
@ -137,7 +136,7 @@ class Game:
|
|||
return
|
||||
|
||||
old_dir = f"{pathname}/old"
|
||||
os.mkdir(old_dir)
|
||||
mkdir(old_dir)
|
||||
|
||||
print(f"Moving {filename} to old/")
|
||||
timestamp = datetime.datetime.now().strftime("%Y-%m-%d")
|
||||
|
|
|
|||
Loading…
Reference in a new issue