From 987b393ae105eafae3de2cbc45bc5cdb0da90780 Mon Sep 17 00:00:00 2001 From: frikky Date: Wed, 8 Jul 2020 02:21:07 +0200 Subject: [PATCH] #91: Fixed app_sdk execution result --- backend/app_sdk/app_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app_sdk/app_base.py b/backend/app_sdk/app_base.py index 89f1f0a7..e54ea97d 100644 --- a/backend/app_sdk/app_base.py +++ b/backend/app_sdk/app_base.py @@ -810,11 +810,11 @@ class AppBase: result += newres else: try: - result += str(result) + result += str(newres) except ValueError: 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("POST NEWRES: ", newres) + print("POST NEWRES RESULT: ", result) else: print("APP_SDK DONE: Starting MULTI execution with", multi_parameters) # 1. Use number of executions based on longest array