Whitespace normalization.

This commit is contained in:
Tim Peters 2007-04-25 18:47:18 +00:00
parent 297996b7d3
commit 35c7bb202f
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ def interleave(inter, f, seq):
seq = iter(seq)
try:
f(seq.next())
except StopIteration:
except StopIteration:
pass
else:
for x in seq: