From 7283c21173a8f338850f5e61d44aa9a39b5553a5 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 17 Apr 2014 11:07:19 -0700 Subject: [PATCH] For another day --- django/db/models/expressions.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/django/db/models/expressions.py b/django/db/models/expressions.py index b84398d9ce..38b656162d 100644 --- a/django/db/models/expressions.py +++ b/django/db/models/expressions.py @@ -15,10 +15,9 @@ class ExpressionNode(tree.Node): MUL = '*' DIV = '/' POW = '^' - # This is a quoted % operator - it is quoted - # because it can be used in strings that also - # have parameter substitution. - MOD = '%%' + MOD = '%%' # This is a quoted % operator - it is quoted + # because it can be used in strings that also + # have parameter substitution. # Bitwise operators - note that these are generated by .bitand() # and .bitor(), the '&' and '|' are reserved for boolean operator