File: osc-wrapper.py

package info (click to toggle)
osc 0.107-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 456 kB
  • ctags: 453
  • sloc: python: 5,819; perl: 364; makefile: 29; sh: 26
file content (16 lines) | stat: -rwxr-xr-x 313 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

# this wrapper exists so it can be put into /usr/bin, but still allows the 
# python module to be called within the source directory during development

import sys
from osc import commandline
from osc import babysitter

osccli = commandline.Osc()

r = babysitter.run(osccli)
sys.exit(r)