mirror of
https://github.com/fergalmoran/picard.git
synced 2026-01-03 07:03:58 +00:00
8 lines
163 B
Python
8 lines
163 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
import os.path
|
|
from picard.tagger import main
|
|
basedir = os.path.dirname(sys.argv[0])
|
|
main(os.path.join(basedir, 'locale'), True)
|
|
|