~mhall119/quickly/reboot-proposed

« back to all changes in this revision

Viewing changes to quickly/core/templates.py

  • Committer: Michael Hall
  • Date: 2012-10-24 12:09:39 UTC
  • Revision ID: mhall119@ubuntu.com-20121024120939-g0smpquq4lyoxahz
Start on re-creating ubuntu-application template

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        for cmd in self._commands.values():
50
50
            cmd._add_to_template(self)
51
51
        
 
52
    def get_template_root(self):
 
53
        import os
 
54
        return os.path.dirname(__file__)
 
55
 
52
56
    def get_command(self, cmd_name):
53
57
        return self._commands.get(cmd_name, None)
54
58