Skip to content

Commit e05b9ea

Browse files
committed
Fixed raw_sql tracking
1 parent 1021487 commit e05b9ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/contrib/django/debug/sql/tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def _record(self, method, sql, params):
117117
'sql': self.db.ops.last_executed_query(
118118
self.cursor, sql, self._quote_params(params)),
119119
'duration': duration,
120-
'raw_sql': sql % params,
120+
'raw_sql': sql,
121121
'params': _params,
122122
'start_time': start_time,
123123
'stop_time': stop_time,

0 commit comments

Comments
 (0)