Commit 4db5986b authored by Richard Berger's avatar Richard Berger
Browse files

Don't skip lines with floats in scientific notation

parent 424d88fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -307,7 +307,7 @@ class log:
          self.data.append(list(map(float,words)))
      else:
        lines = chunk.split("\n")
        alpha = re.compile('[a-zA-Z]')
        alpha = re.compile('[a-df-zA-DF-Z]') # except e or E for floating-point numbers
        for line in lines:
          if alpha.search(line): continue
          words = line.split()