X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=5e500d5e0243052eeb762f9cdf15de3c3782ddae;hb=9e6dd238761e6628d7bd0b6bdb7a997604de3757;hp=6e6946fdaf3b2eb121043928c09c14a8f5cf2970;hpb=53e893615d6e2fd01836c3cba444dffaa0db57c5;p=youtube-dl.git diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 6e6946fda..5e500d5e0 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -38,10 +38,10 @@ import sys import urllib2 import warnings -from Utils import * +from utils import * from FileDownloader import * from InfoExtractors import * -from PostProcessing import * +from PostProcessor import * def updateSelf(downloader, filename): ''' Update the program file with the latest version from the repository ''' @@ -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)