Draft: fixed bug in delay system when passing a function with False as argument
This commit is contained in:
@@ -131,7 +131,7 @@ class todo:
|
||||
for f, arg in todo.itinerary:
|
||||
try:
|
||||
# print("debug: executing",f)
|
||||
if arg:
|
||||
if arg or (arg == False):
|
||||
f(arg)
|
||||
else:
|
||||
f()
|
||||
|
||||
Reference in New Issue
Block a user