mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-10 23:20:02 +01:00
14 lines
239 B
Python
14 lines
239 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
from scriptLanguageBuilder import ScriptLanguageBuilder
|
||
|
|
||
|
class PythonBuilder(ScriptLanguageBuilder):
|
||
|
|
||
|
def name(self):
|
||
|
return "Python builder"
|
||
|
|
||
|
|
||
|
def relativePath(self):
|
||
|
return 'python'
|