We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb9698 commit f728b9eCopy full SHA for f728b9e
debug_toolbar/utils/tracking/db.py
@@ -86,6 +86,8 @@ def _quote_expr(self, element):
86
return repr(element)
87
88
def _quote_params(self, params):
89
+ if not params:
90
+ return params
91
if isinstance(params, dict):
92
return dict((key, self._quote_expr(value))
93
for key, value in params.iteritems())
0 commit comments