~soren/vmbuilder/vmbuilder.refactoring

« back to all changes in this revision

Viewing changes to VMBuilder/util.py

  • Committer: Soren Hansen
  • Date: 2009-12-03 11:34:24 UTC
  • Revision ID: soren@ubuntu.com-20091203113424-sqb2p1518k2oxw75
Development snapshot of the refactoring work, I'm doing. Feel free to look around now, but I'll finish this up and divide it into digestible chunks and submit it in a day or so.

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
            return output
195
195
 
196
196
    raise VMBuilderException('Template %s.tmpl not found in any of %s' % (tmplname, ', '.join(tmpldirs)))
 
197
 
 
198
def get_version_info():
 
199
    from VMBuilder.vcsversion import version_info
 
200
    version_info['major'] = 0
 
201
    version_info['minor'] = 11
 
202
    version_info['micro'] = 3
 
203
    return info
 
204