diff options
| author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-11-29 15:38:07 +0100 | 
|---|---|---|
| committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-11-29 15:38:07 +0100 | 
| commit | 8192ebe1f874b22b0c27e675a4136a06e46a68ce (patch) | |
| tree | 43e0feda4e3381d0c9455a7760093533d47145a5 /youtube_dl/__main__.py | |
| parent | caaa47d37215f498c033afb42972c135be8138d4 (diff) | |
| parent | 20ba04267c3c2be27a766a43f34014012799b761 (diff) | |
Merge remote-tracking branch 'origin/master' into fork_master
New tests - merged with md5 correction
Diffstat (limited to 'youtube_dl/__main__.py')
| -rwxr-xr-x | youtube_dl/__main__.py | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/youtube_dl/__main__.py b/youtube_dl/__main__.py index ccc782bec..0910e9d15 100755 --- a/youtube_dl/__main__.py +++ b/youtube_dl/__main__.py @@ -1,6 +1,14 @@  #!/usr/bin/env python -# Execute with python -m youtube_dl +# Execute with +# $ python youtube_dl/__main__.py (2.6+) +# $ python -m youtube_dl          (2.7+) + +import sys + +if __package__ is None: +    import os.path +    sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))  import youtube_dl  | 
