Fix logging in spotdl.py (#364)

* Fix import typo (logging -> logger)

* Fix logging in handle.py
This commit is contained in:
Ritiek Malhotra
2018-09-30 12:53:28 +05:30
committed by GitHub
parent fc7d5abf16
commit 1d54ffb63c
3 changed files with 6 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ from spotdl import convert
from spotdl import internals
from spotdl import spotify_tools
from spotdl import youtube_tools
from logzero import logging as log
from logzero import logger as log
from slugify import slugify
import spotipy
import urllib.request