aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2016-05-14 13:41:41 +0200
committerJakub Wilk <jwilk@jwilk.net>2016-05-14 13:41:41 +0200
commit66e7ace17a36ed0f761ae620801e9e27d5c3cb3f (patch)
tree9ee5c3a4c0351457b85cf448de590a0a1892ea99 /youtube_dl/YoutubeDL.py
parent98d560f205e6aeddc767844d142b00525a9eaff9 (diff)
downloadyoutube-dl-66e7ace17a36ed0f761ae620801e9e27d5c3cb3f.tar.xz
Don't hardcode errno constant
The value of ENOENT is architecture-dependent, so don't assume it's always 2.
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 03a6a1890..3917ca9dc 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -326,7 +326,7 @@ class YoutubeDL(object):
['fribidi', '-c', 'UTF-8'] + width_args, **sp_kwargs)
self._output_channel = os.fdopen(master, 'rb')
except OSError as ose:
- if ose.errno == 2:
+ if ose.errno == errno.ENOENT:
self.report_warning('Could not find fribidi executable, ignoring --bidi-workaround . Make sure that fribidi is an executable file in one of the directories in your $PATH.')
else:
raise