Skip to content

Commit

Permalink
Fix ProviderLogger.warning
Browse files Browse the repository at this point in the history
  • Loading branch information
grqx committed Sep 12, 2024
1 parent 0711942 commit 632e6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp_plugins/extractor/getpot.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def info(self, message):

def warning(self, message, *, once=False):
if self._logger:
self._logger.warning(self.format(message), once)
self._logger.warning(self.format(message), once=once)

def error(self, message, *, is_error=True):
if self._logger:
Expand Down

0 comments on commit 632e6da

Please sign in to comment.