Browse Source

auto commit

master
jfinn 3 years ago
parent
commit
483ce34f0c
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      wsps/tasks_loop.py

+ 6
- 0
wsps/tasks_loop.py View File

@@ -9,6 +9,7 @@ import json
9 9
 
10 10
 import traceback
11 11
 import inspect
12
+import atexit
12 13
 
13 14
 
14 15
 '''
@@ -366,3 +367,8 @@ atexit.register(atexit_fn)
366 367
 
367 368
 # """
368 369
 
370
+
371
+def atexit_fn():
372
+	print("atexit_fn!\n\n")
373
+	print("",end="",flush=True)
374
+atexit.register(atexit_fn)

Loading…
Cancel
Save