From 297e81029f804b46c084694064c028e106a93085 Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Wed, 14 Apr 2021 10:43:17 +0200 Subject: [PATCH] fix: Use datetime instead of string for effective date --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index d775dfb..335426d 100644 --- a/plot.py +++ b/plot.py @@ -190,7 +190,7 @@ print_stand = stand_date.isoformat() filename_stand = stand_date.strftime("%Y%m%d%H%M%S") -print("Effective {}, last reported date {}", stand, dates.iloc[-1].date()) +print("Effective {}, last reported date {}", stand_date, dates.iloc[-1].date()) '''