Fix typo in function name.

This commit is contained in:
Georg Brandl 2013-10-06 19:14:35 +02:00
parent ffb94ae46f
commit f6d6347fc0
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ expect a function argument.
return resolve_attr(obj, attr)
else:
def g(obj):
return tuple(resolve_att(obj, attr) for attr in items)
return tuple(resolve_attr(obj, attr) for attr in items)
return g
def resolve_attr(obj, attr):