mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[cleanup] Add deprecation warnings
This commit is contained in:
parent
f304da8a29
commit
ee8dd27a73
10 changed files with 81 additions and 18 deletions
|
@ -10,7 +10,7 @@ import traceback
|
|||
from zipimport import zipimporter
|
||||
|
||||
from .compat import compat_realpath
|
||||
from .utils import encode_compat_str, Popen
|
||||
from .utils import encode_compat_str, Popen, write_string
|
||||
|
||||
from .version import __version__
|
||||
|
||||
|
@ -251,13 +251,13 @@ def print_notes(to_screen, versions, fromVersion=__version__):
|
|||
'''
|
||||
|
||||
|
||||
# Deprecated
|
||||
def update_self(to_screen, verbose, opener):
|
||||
''' Exists for backward compatibility '''
|
||||
|
||||
printfn = to_screen
|
||||
|
||||
printfn(
|
||||
'WARNING: "yt_dlp.update.update_self" is deprecated and may be removed in a future version. '
|
||||
write_string(
|
||||
'DeprecationWarning: "yt_dlp.update.update_self" is deprecated and may be removed in a future version. '
|
||||
'Use "yt_dlp.update.run_update(ydl)" instead')
|
||||
|
||||
class FakeYDL():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue