solve stupid bug in spe_zip

This commit is contained in:
Lafrite 2014-11-15 10:03:29 +01:00
parent 1fac2cc29e
commit 12bcf7214a
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ def spe_zip(l1,l2):
ans = []
for i in tmp:
if None in i:
j = [a for a in i if i != None][-1]
j = [a for a in i if a != None][-1]
else:
j = list(i)
ans.append(j)