# HG changeset patch # User greg # Date 1543331859 18000 # Node ID 1ce61b5b58d52074194f5faab4b42bec903d6dd1 # Parent 9f4f850c472daa3fe1b6d57bc26a9c2fce90f2f7 Uploaded diff -r 9f4f850c472d -r 1ce61b5b58d5 validate_temperature_data.py --- a/validate_temperature_data.py Tue Nov 27 10:14:40 2018 -0500 +++ b/validate_temperature_data.py Tue Nov 27 10:17:39 2018 -0500 @@ -142,7 +142,7 @@ longitude = items[1].strip() accumulated_msgs = validate_decimal(i, longitude, accumulated_msgs, "LONGITUDE") date_string = items[2].strip() - accumulated_msgs = validate_date_string(line_no, date_string, accumulated_msgs) + accumulated_msgs = validate_date_string(i, date_string, accumulated_msgs) doy = items[3].strip() accumulated_msgs = validate_integer(i, doy, accumulated_msgs, "doy") # Make sure the DOY values are consecutive.