From f2bb77f4d27853c20ac6c259125b7ee0e2a74da7 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Tue, 30 Jun 2020 16:03:25 -0600 Subject: [PATCH] fix missing minutes in __repr__ --- cftime/_cftime.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cftime/_cftime.pyx b/cftime/_cftime.pyx index 2cbb8ef6..1cae1d05 100644 --- a/cftime/_cftime.pyx +++ b/cftime/_cftime.pyx @@ -943,7 +943,7 @@ Gregorial calendar. def __repr__(self): return "{0}.{1}({2}, {3}, {4}, {5}, {6}, {7})".format('cftime', self.__class__.__name__, - self.year,self.month,self.day,self.hour,self.second,self.microsecond) + self.year,self.month,self.day,self.hour,self.minute,self.second,self.microsecond) def __str__(self): return self.isoformat(' ')