mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-31 13:48:01 +00:00
Some distributions have switched to Python3 as default. So, /usr/bin/env python opens up wrong interpreter.
11 lines
194 B
Python
Executable File
11 lines
194 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
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)
|