Commit 83c6a3ad authored by Jeffrey Covington's avatar Jeffrey Covington
Browse files

Application tests which compare csv files now allow blank lines in the tolerence file. Fixes #2217

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@6038 41f8697f-d340-4b68-9986-7bafba869bb8
parent 3e002efe
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ if len(sys.argv) >= 4:
  # Break each line into a column part for each CSV and a tolerance component
  tolerances = tolerance_file.readlines()
  for line in tolerances:
    if line.strip() != '':
      column, tolerance = line.strip().upper().split("=")
      tolerance_map[column] = float(tolerance)