source: traclegosscript/anyrelease/traclegos/pastescript/command.py

Last change on this file was 4216, checked in by Jeff Hammel, 15 years ago

initial commit of TracLegos at trac-hacks, moved from https://svn.openplans.org/svn/trac/install/TracLegos

File size: 352 bytes
Line 
1from paste.script.create_distro import CreateDistroCommand
2
3def create_distro_command(interactive=True, args=None):
4    """ front-end the CreateDistro command"""
5    command = CreateDistroCommand('create')
6    command.verbose = 0
7    command.simulate = False
8    command.interactive = interactive
9    command.parse_args(args or [])
10    return command
11
Note: See TracBrowser for help on using the repository browser.