projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43ff1a3
)
Resolve the symlink if __main__.py is invoke as a symlink.
author
Adam Mesha
<adam@mesha.org>
Thu, 11 Apr 2013 04:33:18 +0000
(07:33 +0300)
committer
Adam Mesha
<adam@mesha.org>
Thu, 11 Apr 2013 05:02:17 +0000
(08:02 +0300)
youtube_dl/__main__.py
patch
|
blob
|
history
diff --git
a/youtube_dl/__main__.py
b/youtube_dl/__main__.py
index 7022ea4bec75fb864cd58c3c3c9b5f2a15bc5d7a..3fe29c91f416e0d6c957ed750d3f0f69950dc9c0 100755
(executable)
--- a/
youtube_dl/__main__.py
+++ b/
youtube_dl/__main__.py
@@
-9,7
+9,8
@@
import sys
if __package__ is None and not hasattr(sys, "frozen"):
# direct call of __main__.py
import os.path
- sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+ path = os.path.realpath(os.path.abspath(__file__))
+ sys.path.append(os.path.dirname(os.path.dirname(path)))
import youtube_dl