mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Add auto-updating of youtube-dl version in ISSUE_TEMPLATE Move parts of template text and adopt makefile to new format Moved the 'kind-of-issue' section and rephrased a bit Rephrased and moved Example URL section upwards Moved ISSUE_TEMPLATE inside .github folder. Update makefile to match new folderstructure
		
			
				
	
	
		
			33 lines
		
	
	
		
			828 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			828 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| import io
 | |
| import optparse
 | |
| import re
 | |
| 
 | |
| 
 | |
| def main():
 | |
|     parser = optparse.OptionParser(usage='%prog FILE')
 | |
|     options, args = parser.parse_args()
 | |
|     if len(args) != 1:
 | |
|         parser.error('Expected an filename')
 | |
| 
 | |
|     with io.open(args[0], encoding='utf-8') as inf:
 | |
|         issue_template_text = inf.read()
 | |
| 
 | |
|     # Get the version from youtube_dl/version.py without importing the package
 | |
|     exec(compile(open('youtube_dl/version.py').read(),
 | |
|          'youtube_dl/version.py', 'exec'))
 | |
| 
 | |
|     issue_template_text = re.sub(
 | |
|         r'(?<=\*\*)(?P<version>[0-9\.]+)(?=\*\*)',
 | |
|         __version__,
 | |
|         issue_template_text
 | |
|     )
 | |
| 
 | |
|     with io.open(args[0], 'w', encoding='utf-8') as outf:
 | |
|          outf.write(issue_template_text)
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     main()
 |