mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Fix 2.6 nosetests
This commit is contained in:
		| @@ -38,13 +38,14 @@ try: | ||||
| except AttributeError: # Python 2.6 | ||||
|     def _skip_unless(cond, reason='No reason given'): | ||||
|         def resfunc(f): | ||||
|             def wfunc(*args, **kwargs): | ||||
|             # Start the function name with test to appease nosetests-2.6 | ||||
|             def test_wfunc(*args, **kwargs): | ||||
|                 if cond: | ||||
|                     return f(*args, **kwargs) | ||||
|                 else: | ||||
|                     print('Skipped test') | ||||
|                     return | ||||
|             return wfunc | ||||
|             return test_wfunc | ||||
|         return resfunc | ||||
| _skip = lambda *args, **kwargs: _skip_unless(False, *args, **kwargs) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user