mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-22 09:18:18 +00:00
Don't separately catch exceptions around main but rely on the new excepthook. This prevents the crash dialog to be shown twice for exceptions which are catched by the exception handler already.
8 lines
155 B
Python
8 lines
155 B
Python
#!/usr/bin/env python3
|
|
|
|
from picard import register_excepthook
|
|
register_excepthook()
|
|
|
|
from picard.tagger import main
|
|
main('%(localedir)s', %(autoupdate)s)
|