database: fix autoupdate

This commit is contained in:
2023-04-15 01:31:52 -04:00
parent 4419310086
commit 9895068125
2 changed files with 46 additions and 19 deletions

View File

@ -47,7 +47,7 @@ class BaseData:
res = None
try:
self.logger.info(f"SQL Execute: {''.join(str(sql).splitlines())} || {opts}")
self.logger.info(f"SQL Execute: {''.join(str(sql).splitlines())}")
res = self.conn.execute(text(sql), opts)
except SQLAlchemyError as e: