mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-27 03:37:33 +00:00
12 lines
188 B
Python
12 lines
188 B
Python
#!/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)
|
|
|