Complete rewrite of the internal commandline handling, using cmdln.py.
[opensuse:osc.git] / osc-wrapper.py
1 #!/usr/bin/env python
2
3 # this wrapper exists so it can be put into /usr/bin, but still allows the 
4 # python module to be called within the source directory during development
5
6 import sys
7 from osc import commandline
8
9 osc = commandline.Osc()
10 sys.exit( osc.main() )
11
12