 9b08fbefe5
			
		
	
	
	
	
	9b08fbefe5Seen at https://lgtm.com/projects/g/electron/electron/?mode=list&id=py%2Funused-import and confirmed with manual inspection.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			586 B
			
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			586 B
			
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env python2
 | |
| 
 | |
| import argparse
 | |
| import sys
 | |
| 
 | |
| from lib import git
 | |
| 
 | |
| def main(argv):
 | |
|   parser = argparse.ArgumentParser()
 | |
|   parser.add_argument("-o", "--output",
 | |
|       help="directory into which exported patches will be written",
 | |
|       required=True)
 | |
|   parser.add_argument("patch_range",
 | |
|       nargs='?',
 | |
|       help="range of patches to export. Defaults to all commits since the "
 | |
|            "most recent tag or remote branch.")
 | |
|   args = parser.parse_args(argv)
 | |
| 
 | |
|   git.export_patches('.', args.output, patch_range=args.patch_range)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|   main(sys.argv[1:])
 |