fixed missing space in log message

pull/173/head
Chris Veilleux 2019-06-03 21:59:55 -05:00
parent e6ff629101
commit f3d3aa5709
1 changed files with 1 additions and 1 deletions
shared/selene/util/db

View File

@ -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):