diff options
author | Hector Fernandez <hector@iatec.biz> | 2020-04-01 11:45:07 +0200 |
---|---|---|
committer | Hector Fernandez <hector@iatec.biz> | 2020-04-13 09:55:40 +0200 |
commit | 0c610ebbef5928f17ec8c14d872b4d4298d3c4fb (patch) | |
tree | b7574997e4286759a8a98a86814be814d8bdadb0 /test-cli/test/helpers | |
parent | 686893803c05fedd38a24bb1f661f8aeb7c652fe (diff) | |
download | board-0c610ebbef5928f17ec8c14d872b4d4298d3c4fb.zip board-0c610ebbef5928f17ec8c14d872b4d4298d3c4fb.tar.gz board-0c610ebbef5928f17ec8c14d872b4d4298d3c4fb.tar.bz2 |
Modificada la IP del servidor. Arreglado error al enviar los datos de la eeprom grabada a la BD.
Diffstat (limited to 'test-cli/test/helpers')
-rw-r--r-- | test-cli/test/helpers/testsrv_db.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-cli/test/helpers/testsrv_db.py b/test-cli/test/helpers/testsrv_db.py index bf51acf..d563e74 100644 --- a/test-cli/test/helpers/testsrv_db.py +++ b/test-cli/test/helpers/testsrv_db.py @@ -139,12 +139,12 @@ class TestSrv_Database(object): def create_task_result(self, taskid_ctl, name, newstatus, newinfo=None): sql = "SELECT isee.f_create_task_result({},'{}','{}','{}')".format(taskid_ctl, name, newstatus, newinfo) - # print('>>>' + sql) + print('>>>' + sql) try: self.__sqlObject.db_execute_query(sql) except Exception as err: r = find_between(str(err), '#', '#') - # print(r) + print(r) return None def update_taskctl_status(self, taskid_ctl, newstatus): |