From f3d3aa5709c766d7fe824b7b6154180ab4c885f1 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Mon, 3 Jun 2019 21:59:55 -0500 Subject: [PATCH] fixed missing space in log message --- shared/selene/util/db/cursor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/selene/util/db/cursor.py b/shared/selene/util/db/cursor.py index 0b8216c9..16c1df64 100644 --- a/shared/selene/util/db/cursor.py +++ b/shared/selene/util/db/cursor.py @@ -96,7 +96,7 @@ class Cursor(object): with self.db.cursor() as cursor: _log.debug(cursor.mogrify(db_request.sql, db_request.args).decode()) cursor.execute(db_request.sql, db_request.args) - _log.debug(str(cursor.rowcount) + 'rows affected') + _log.debug(str(cursor.rowcount) + ' rows affected') return cursor.rowcount def _execute_batch(self, db_request: DatabaseBatchRequest):