diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-05-22 04:35:59 -0700 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-05-22 04:35:59 -0700 |
commit | 1b91a2e2cfa3b9277205eb9652e5a2f0b40a0016 (patch) | |
tree | c5f4ca39348f1d54bcb4578b81fd44ddc87154f6 /youtube_dl/__main__.py | |
parent | 0c24eed73a914e81f73312fad57485e404c0756b (diff) | |
parent | 2c288bda4235bed6927d88d9bf53ecaec18f7904 (diff) |
Merge pull request #342 from FiloSottile/master
Re-organized code and a lot of other stuff.
Diffstat (limited to 'youtube_dl/__main__.py')
-rwxr-xr-x | youtube_dl/__main__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/__main__.py b/youtube_dl/__main__.py new file mode 100755 index 000000000..6f20402e2 --- /dev/null +++ b/youtube_dl/__main__.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import __init__ + +if __name__ == '__main__': + __init__.main() |