summaryrefslogtreecommitdiff
path: root/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'compat.py')
-rw-r--r--compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat.py b/compat.py
index 7325087..a642b97 100644
--- a/compat.py
+++ b/compat.py
@@ -122,7 +122,7 @@ except NameError: # py2.3
try:
max = max
- max(("ab","cde"),key=len) # does not work in py2.3
+ max(("ab", "cde"), key=len) # does not work in py2.3
except TypeError:
def max( *args, **kargs):
if len(args) == 0: