mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[update] Expose more functionality to API
This commit is contained in:
parent
f0500bd1e4
commit
57e0f077a6
4 changed files with 159 additions and 119 deletions
|
@ -55,7 +55,7 @@ if compat_os_name == 'nt' and sys.version_info < (3, 8):
|
|||
def compat_realpath(path):
|
||||
while os.path.islink(path):
|
||||
path = os.path.abspath(os.readlink(path))
|
||||
return path
|
||||
return os.path.realpath(path)
|
||||
else:
|
||||
compat_realpath = os.path.realpath
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue