mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-23 01:37:47 +00:00
They are currently in ./tagger.py. Which means they will never get called unless you're using ./tagger.py to start Picard.
11 lines
193 B
Python
Executable File
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)
|