youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c9ed14e6d6834b61171849a2fefa750e2f7a58b8
parent 1ad85e5061936cdf74e03a8875055df02bcb3769
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 26 Feb 2012 23:53:56 +0100

Move imports to top (Closes #283)

Diffstat:
Myoutube_dl/__init__.py | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py @@ -22,8 +22,10 @@ __version__ = '2012.01.08b' UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl' + import cookielib import datetime +import getpass import gzip import htmlentitydefs import HTMLParser @@ -31,9 +33,11 @@ import httplib import locale import math import netrc +import optparse import os import os.path import re +import shlex import socket import string import subprocess @@ -4205,11 +4209,6 @@ def updateSelf(downloader, filename): downloader.to_screen(u'Updated youtube-dl. Restart youtube-dl to use the new version.') def parseOpts(): - # Deferred imports - import getpass - import optparse - import shlex - def _readOptions(filename_bytes): try: optionf = open(filename_bytes)