view talosnames/template.py @ 3:90e477181404

now basically works
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 08 Jul 2012 14:20:28 -0700
parents 3e1f069ac608
children
line wrap: on
line source

#!/usr/bin/env python

"""
talosnames template for makeitso
"""

import sys
from cli import MakeItSoCLI
from optparse import OptionParser
from template import MakeItSoTemplate

class talosnamesTemplate(MakeItSoTemplate):
  """
  talosnames template
  """
  name = 'talosnames'
  templates = ['template']
  look = True

class TemplateCLI(MakeItSoCLI):
  """
  CLI driver for the talosnames template
  """

def main(args=sys.argv[:]):
  cli = TemplateCLI()
  cli(*args)
  
if __name__ == '__main__':
  main()