fix(api): raise SystemExit in manage.py script

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2467>
This commit is contained in:
jo 2023-06-12 14:15:12 +02:00 committed by Marge
parent 21c67aa39a
commit b70b120363
2 changed files with 2 additions and 1 deletions

View File

@ -12,4 +12,4 @@ warnings.warn(
)
if __name__ == "__main__":
SystemExit(main())
raise SystemExit(main())

View File

@ -0,0 +1 @@
Raise SystemExit exception in API manage.py script