diff --git a/gramps/gen/plug/report/_options.py b/gramps/gen/plug/report/_options.py index c8044d2fb..1affbae70 100644 --- a/gramps/gen/plug/report/_options.py +++ b/gramps/gen/plug/report/_options.py @@ -946,7 +946,7 @@ class MenuReportOptions(MenuOptions, ReportOptions): def get_subject(self): """ Return a string that describes the subject of the report. - + This method MUST be overridden by subclasses. """ LOG.warning("get_subject not implemented for %s" % self.name) diff --git a/gramps/plugins/textreport/birthdayreport.py b/gramps/plugins/textreport/birthdayreport.py index 8de38434d..7796151c6 100644 --- a/gramps/plugins/textreport/birthdayreport.py +++ b/gramps/plugins/textreport/birthdayreport.py @@ -405,7 +405,7 @@ class BirthdayOptions(MenuReportOptions): self.__pid = None self.__filter = None MenuReportOptions.__init__(self, name, dbase) - + def get_subject(self): """ Return a string that describes the subject of the report. """ return self.__filter.get_filter().get_name()