changeset 10:1ce61b5b58d5 draft

Uploaded
author greg
date Tue, 27 Nov 2018 10:17:39 -0500
parents 9f4f850c472d
children f0d173b1abcf
files validate_temperature_data.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.