mirror of
				https://code.hackerspace.pl/q3k/youtube-dl
				synced 2025-03-16 11:43:02 +00:00 
			
		
		
		
	Merge pull request #9493 from jwilk/errno
Don't hardcode errno constant
This commit is contained in:
		
						commit
						707bb426b1
					
				| @ -326,7 +326,7 @@ class YoutubeDL(object): | |||||||
|                         ['fribidi', '-c', 'UTF-8'] + width_args, **sp_kwargs) |                         ['fribidi', '-c', 'UTF-8'] + width_args, **sp_kwargs) | ||||||
|                 self._output_channel = os.fdopen(master, 'rb') |                 self._output_channel = os.fdopen(master, 'rb') | ||||||
|             except OSError as ose: |             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.') |                     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: |                 else: | ||||||
|                     raise |                     raise | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
						Yen Chi Hsuan