Skip to content

Commit

Permalink
fix missing minutes in __repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
jswhit committed Jun 30, 2020
1 parent 773c03d commit f2bb77f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cftime/_cftime.pyx
Expand Up @@ -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(' ')

Expand Down

0 comments on commit f2bb77f

Please sign in to comment.