mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
b4b855ebc7
commit
d3c93ec2b7
10 changed files with 63 additions and 58 deletions
|
@ -10,7 +10,7 @@ import traceback
|
|||
from zipimport import zipimporter
|
||||
|
||||
from .compat import compat_realpath
|
||||
from .utils import encode_compat_str
|
||||
from .utils import encode_compat_str, Popen
|
||||
|
||||
from .version import __version__
|
||||
|
||||
|
@ -191,7 +191,7 @@ def run_update(ydl):
|
|||
return
|
||||
try:
|
||||
# Continues to run in the background
|
||||
subprocess.Popen(
|
||||
Popen(
|
||||
'ping 127.0.0.1 -n 5 -w 1000 & del /F "%s.old"' % exe,
|
||||
shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||
ydl.to_screen('Updated yt-dlp to version %s' % version_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue