Skip to content

Commit

Permalink
remove spaces from print functions
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert committed Apr 25, 2013
1 parent 09203c6 commit 9a924cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debug_toolbar/management/commands/debugsqlshell.py
Expand Up @@ -16,8 +16,8 @@ def execute(self, sql, params=()):
finally:
raw_sql = self.db.ops.last_executed_query(self.cursor, sql, params)
execution_time = datetime.now() - starttime
print( sqlparse.format(raw_sql, reindent=True),)
print( ' [%.2fms]' % (ms_from_timedelta(execution_time),))
print(sqlparse.format(raw_sql, reindent=True),)
print(' [%.2fms]' % (ms_from_timedelta(execution_time),))
print()

util.CursorDebugWrapper = PrintQueryWrapper

0 comments on commit 9a924cd

Please sign in to comment.