Files
picard/tagger.py
Michael Wiencek d41995f5ed Move sip.setapi calls to picard/tagger.py
They are currently in ./tagger.py. Which means they will never get
called unless you're using ./tagger.py to start Picard.
2014-02-23 19:21:20 -06:00

11 lines
193 B
Python
Executable File

#!/usr/bin/env python
import os.path
import sys
sys.path.insert(0, '.')
from picard.tagger import main
localedir = os.path.join(os.path.dirname(sys.argv[0]), 'locale')
main(localedir, True)