From 6afb61b666fb8b446963a9b59796d54453db4bf3 Mon Sep 17 00:00:00 2001 From: Darius Arnold Date: Fri, 30 Nov 2018 10:26:57 +0100 Subject: [PATCH] [change] order to Day/Month/Year when reading csv file for event info --- PyLoT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyLoT.py b/PyLoT.py index 417cefc4..9fe47d00 100755 --- a/PyLoT.py +++ b/PyLoT.py @@ -3480,7 +3480,7 @@ class Project(object): eventID, date, time, mag, lat, lon, depth = line.split(separator)[:7] # skip first line try: - month, day, year = date.split('/') + day, month, year = date.split('/') except: continue year = int(year)