~launchpad-pqm/launchpad/devel

7167.3.2 by Francis J. Lacoste
Added lp-windmill.py wrapper that starts LP. Moved bare windmill to utilities.
1
#!/usr/bin/python2.5
8687.15.4 by Karl Fogel
Add the copyright header block to more files; tweak format in a few files.
2
#
3
# Copyright 2009 Canonical Ltd.  This software is licensed under the
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
7167.3.2 by Francis J. Lacoste
Added lp-windmill.py wrapper that starts LP. Moved bare windmill to utilities.
6
"""Windmill command line.
7
8
A separate script is used because windmill uses Python 2.5 features.
9
So it must be run separately.
10
"""
11
import _pythonpath
12
from windmill.bin.windmill_bin import main
13
14
if __name__ == '__main__':
15
    main()