Merge pull request #3 from potatoeggy/master

Remove outdated os.errno import
This commit is contained in:
MrTyton 2021-05-22 19:40:29 -07:00 committed by GitHub
commit c94ad354ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
from fanficfare import geturls from fanficfare import geturls
from os import listdir, remove, rename, utime, errno, devnull from os import listdir, remove, rename, utime, devnull
from os.path import isfile, join from os.path import isfile, join
from subprocess import check_output, STDOUT, call, PIPE from subprocess import check_output, STDOUT, call, PIPE
import logging import logging
@ -10,6 +10,7 @@ from tempfile import mkdtemp
from shutil import rmtree from shutil import rmtree
import socket import socket
from time import strftime, localtime from time import strftime, localtime
import errno
from errno import ENOENT from errno import ENOENT
from multiprocessing import Pool from multiprocessing import Pool