Mercurial > treepkg
view bin/treepkginfo.py @ 392:e2afbd3c2bf1 treepkg-status
write first info about tracks
author | Bjoern Ricks <bricks@intevation.de> |
---|---|
date | Thu, 08 Jul 2010 16:11:13 +0000 |
parents | |
children | 04310ad0063e |
line wrap: on
line source
#! /usr/bin/python # Copyright (C) 2010 by Intevation GmbH # Authors: # Bjoern Ricks <bjoern.ricks@intevation.de> # # This program is free software under the GPL (>=v2) # Read the file COPYING coming with the software for details. """Receive the status of a treepkg""" import treepkgcmd from treepkg.info import status from treepkg.options import create_parser def parse_commandline(): parser = create_parser() return parser.parse_args() def main(): options, args = parse_commandline() tpkginfo = status.TreepkgInfo(options.config_file) main()