remove extraneous newlines in logs

This commit is contained in:
Mike McLean 2010-04-13 17:38:37 -04:00
parent 829c7950a2
commit 589a8ee481
2 changed files with 5 additions and 5 deletions

View file

@ -94,7 +94,7 @@ class CursorWrapper:
start = time.time()
ret = self.cursor.execute(operation, parameters)
if debug:
self.logger.debug("Execute operation completed in %.4f seconds\n", time.time() - start)
self.logger.debug("Execute operation completed in %.4f seconds", time.time() - start)
return ret