mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-29 04:37:39 +00:00
11 lines
194 B
Python
Executable File
11 lines
194 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
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)
|