diff options
Diffstat (limited to 'datamaps/plugins/dft')
-rw-r--r-- | datamaps/plugins/dft/master.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/datamaps/plugins/dft/master.py b/datamaps/plugins/dft/master.py index 04dfc19..ac81bd9 100644 --- a/datamaps/plugins/dft/master.py +++ b/datamaps/plugins/dft/master.py @@ -217,9 +217,9 @@ class Master: 12: "December", } return [ - m.month + m for m in self.quarter.months - if m.month == months[self._declared_month] + if m.name == months[self._declared_month] ][0] @property |