1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 17:26:15 +02:00
github.com_openSUSE_osc/osc-wrapper.py

13 lines
265 B
Python
Raw Normal View History

#!/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
osc = commandline.Osc()
sys.exit( osc.main() )