Fix incorrect call to log.
This commit is contained in:
parent
42417ed008
commit
08290d7c6d
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ class YCDLDBVideoMixin:
|
||||||
|
|
||||||
video = self.get_video(video_id)
|
video = self.get_video(video_id)
|
||||||
if video.state != 'pending' and not force:
|
if video.state != 'pending' and not force:
|
||||||
self.ycdldb.log.debug('%s does not need to be downloaded.', video_id)
|
self.log.debug('%s does not need to be downloaded.', video_id)
|
||||||
return
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue