mirror of
				http://git.whoc.org.uk/git/password-manager.git
				synced 2025-11-04 04:57:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			220 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			220 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
# -*- coding: UTF-8 -*-
 | 
						|
 | 
						|
from backendBuilder import BackendBuilder
 | 
						|
 | 
						|
class PythonBuilder(BackendBuilder):
 | 
						|
	
 | 
						|
	def name(self):
 | 
						|
		return "Python builder"
 | 
						|
	
 | 
						|
	def relativePath(self):
 | 
						|
		return 'python'
 | 
						|
	
 | 
						|
 |