Mercurial > hg > TextShaper
changeset 6:6e382347af17
cleanup
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 04 Oct 2013 13:58:45 -0700 |
parents | 0a800613af9a |
children | 2693d9f8ed8c |
files | textshaper/template.py textshaper/textshaper.py |
diffstat | 2 files changed, 2 insertions(+), 32 deletions(-) [+] |
line wrap: on
line diff
--- a/textshaper/template.py Thu Sep 26 02:02:36 2013 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -#!/usr/bin/env python - -""" -TextShaper template for makeitso -""" - -import sys -from cli import MakeItSoCLI -from optparse import OptionParser -from template import MakeItSoTemplate - -class TextShaperTemplate(MakeItSoTemplate): - """ - TextShaper template - """ - name = 'TextShaper' - templates = ['template'] - look = True - -class TemplateCLI(MakeItSoCLI): - """ - CLI driver for the TextShaper template - """ - -def main(args=sys.argv[:]): - cli = TemplateCLI() - cli(*args) - -if __name__ == '__main__': - main() - -