Browse Source

auto commit

master
jfinn 2 years ago
parent
commit
2597388876
1 changed files with 7 additions and 5 deletions
  1. 7
    5
      wsps/tasks_loop.py

+ 7
- 5
wsps/tasks_loop.py View File

@@ -140,8 +140,6 @@ Mixins.AclTaskMixin = AclTaskMixin
140 140
 
141 141
 
142 142
 
143
-if not hot_reload_build:
144
-	wsps.hot_reload_temp_staging.init_class_edits(Mixins)
145 143
 
146 144
 class globCL(GCLMixin):
147 145
 
@@ -422,9 +420,13 @@ def fn1(*a,**kw):
422 420
 	glob_cl.rman.rld_files()
423 421
 glob_cl =  globCL()
424 422
 
425
-# if hot_reload_build:
426
-	# glob_cl.rman.rld_files()
427
-glob_cl.rman.rld_files()
423
+if hot_reload_build:
424
+	glob_cl.rman.rld_files()
425
+else:
426
+	wsps.hot_reload_temp_staging.init_class_edits(Mixins)
427
+
428
+# if not hot_reload_build:
429
+# glob_cl.rman.rld_files()
428 430
 
429 431
 
430 432
 def atexit_fn():

Loading…
Cancel
Save