mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-28 12:17:37 +00:00
12 lines
307 B
Python
12 lines
307 B
Python
#!/usr/bin/env python3
|
|
|
|
try:
|
|
from picard.tagger import main
|
|
main('%(localedir)s', %(autoupdate)s)
|
|
except SystemExit:
|
|
raise # Just continue with a normal application exit
|
|
except: # noqa: E722,F722 # pylint: disable=bare-except
|
|
from picard import crash_handler
|
|
crash_handler()
|
|
raise
|