fix the admin script return value

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-01-22 11:12:37 +03:00
parent 8e49322395
commit c8a4067596
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D

View File

@ -405,4 +405,4 @@ class AdminScript:
if __name__ == "__main__":
script = AdminScript()
exit(script.run() if 1 else 0)
exit(0 if script.run() else 1)