about summary refs log tree commit diff
path: root/youtube_dl/__main__.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-11-29 15:11:24 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-11-29 15:11:24 +0100
commit743b28ce1155df348bbb828fcb316d57c8704328 (patch)
treef160086e2cf5bfc2b135c8d3f88e12e44bac68dd /youtube_dl/__main__.py
parent81760416054be7dcccc66b14d171872c8e13f183 (diff)
downloadyoutube-dl-743b28ce1155df348bbb828fcb316d57c8704328.tar.gz
youtube-dl-743b28ce1155df348bbb828fcb316d57c8704328.tar.xz
youtube-dl-743b28ce1155df348bbb828fcb316d57c8704328.zip
Allow youtube_dl/__main__.py to be called directly
Diffstat (limited to 'youtube_dl/__main__.py')
-rwxr-xr-xyoutube_dl/__main__.py10
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