From bcfde70d7382463cf1cab61165641c1f16b8c6d8 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Sat, 31 Mar 2012 01:27:47 +0200 Subject: [PATCH] py2exe -U fix for Windows XP --- youtube_dl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 6e6946fda..b4141b69e 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -75,7 +75,7 @@ def updateSelf(downloader, filename): b = open(bat, 'w') print >> b, """ -timeout /t 5 /nobreak +ping 127.0.0.1 -n 5 -w 1000 > NUL move /Y "%s.new" "%s" del "%s" """ %(exe, exe, bat)