diff --git a/gramps/plugins/gramplet/locations.py b/gramps/plugins/gramplet/locations.py index d60960959..808f317f6 100644 --- a/gramps/plugins/gramplet/locations.py +++ b/gramps/plugins/gramplet/locations.py @@ -300,6 +300,8 @@ class DateRange: """ start = None stop = None + if date.is_empty(): + return (None, None) if date.modifier == Date.MOD_NONE: start = date.sortval stop = date.sortval