Initial commit (Release 0.4)
[stgit] / stg
CommitLineData
41a6d859
CM
1#!/usr/bin/env python
2# -*- python-mode -*-
3"""Takes care of starting the Init function
4"""
5
6__copyright__ = """
7Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
8
9This program is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License version 2 as
11published by the Free Software Foundation.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21"""
22
23from stgit.main import main
24
25main()