#91: Fixed app_sdk execution result

This commit is contained in:
frikky
2020-07-08 02:21:07 +02:00
parent 12948e5c0a
commit 987b393ae1
+2 -2
View File
@@ -810,11 +810,11 @@ class AppBase:
result += newres result += newres
else: else:
try: try:
result += str(result) result += str(newres)
except ValueError: except ValueError:
result += "Failed autocasting. Can't handle %s type from function. Must be string" % type(newres) result += "Failed autocasting. Can't handle %s type from function. Must be string" % type(newres)
print("Can't handle type %s value from function" % (type(newres))) print("Can't handle type %s value from function" % (type(newres)))
print("POST NEWRES: ", newres) print("POST NEWRES RESULT: ", result)
else: else:
print("APP_SDK DONE: Starting MULTI execution with", multi_parameters) print("APP_SDK DONE: Starting MULTI execution with", multi_parameters)
# 1. Use number of executions based on longest array # 1. Use number of executions based on longest array