2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-04-15 07:48:51 +00:00

Catch keyboard interrupts (#11720)

This commit is contained in:
Oliver
2026-04-11 13:46:55 +10:00
committed by GitHub
parent 3bd304bb4d
commit fffc55c764
3 changed files with 18 additions and 2 deletions

View File

@@ -22,4 +22,8 @@ def main():
if __name__ == '__main__':
main()
try:
main()
except KeyboardInterrupt:
print('INVE-W15: Process interrupted by user.')
sys.exit(1)