diff --git a/python/tabplot.py b/python/tabplot.py index b6cdefc..1db049c 100755 --- a/python/tabplot.py +++ b/python/tabplot.py @@ -22,6 +22,6 @@ table = [ row for row in table if len(row) ] ## remove empty rows if len(table[0]) == 1 : pyplot.plot( [y[0] for y in table ] ) - for x in xrange(1,len(table[0])): + for x in range(1,len(table[0])): pyplot.plot( [ y[0] for y in table ], [ y[x] for y in table ] ) pyplot.show()