summaryrefslogtreecommitdiff
path: root/babel/plural.py
diff options
context:
space:
mode:
Diffstat (limited to 'babel/plural.py')
-rw-r--r--babel/plural.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/babel/plural.py b/babel/plural.py
index fe1ee25..26073ff 100644
--- a/babel/plural.py
+++ b/babel/plural.py
@@ -521,7 +521,7 @@ class _Parser:
def _binary_compiler(tmpl):
"""Compiler factory for the `_Compiler`."""
- return lambda self, l, r: tmpl % (self.compile(l), self.compile(r))
+ return lambda self, left, right: tmpl % (self.compile(left), self.compile(right))
def _unary_compiler(tmpl):