Skip to content

Commit a6e025c

Browse files
committed
Bugfix (introduced by PEP8 fixes).
1 parent c1e5d9c commit a6e025c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def __init__(self, data, distance=None):
703703
if len(item) != control_length:
704704
raise ValueError("Each item in the data list must have "
705705
"the same amount of dimensions. Item %r was out "
706-
"of line!" % item)
706+
"of line!" % (item,))
707707
# now check if we need and have a distance function
708708
if (len(data) > 1 and not isinstance(data[0], TupleType) and
709709
distance is None):

0 commit comments

Comments
 (0)