summaryrefslogtreecommitdiff
path: root/compat.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-11-15 11:56:32 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-11-15 11:56:32 +0100
commit2575a944af5839cf1bbafbdfe7f7f55478020014 (patch)
tree69d3e962e42ca99acd40b370028a7365e8a4e999 /compat.py
parent9dda4d681ecb3a769b39223ca723f98157071335 (diff)
downloadlogilab-common-2575a944af5839cf1bbafbdfe7f7f55478020014.tar.gz
2to3: fix a lot of white space after comma
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: