Skip to content

Commit

Permalink
[Truffle] Mx: fix my Python.
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Oct 6, 2016
1 parent d5831a4 commit 99abbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mx.jruby/mx_jruby.py
Expand Up @@ -463,7 +463,7 @@ def filterLines(self, lines):
data.append(float(line))
except ValueError:
log(line)
if data.size % 2 != 0:
if len(data) % 2 != 0:
raise AssertionError("Odd number of values")
return data

Expand Down

0 comments on commit 99abbd5

Please sign in to comment.