mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-25 10:48:18 +00:00
15 lines
256 B
Python
Executable File
15 lines
256 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os.path
|
|
import sys
|
|
import sip
|
|
|
|
sip.setapi("QString", 2)
|
|
sip.setapi("QVariant", 2)
|
|
|
|
sys.path.insert(0, '.')
|
|
from picard.tagger import main
|
|
|
|
localedir = os.path.join(os.path.dirname(sys.argv[0]), 'locale')
|
|
main(localedir, True)
|