Merge branch 'master' of github.com:gramps-project/gramps

This commit is contained in:
Jérôme Rapinat 2015-03-25 19:25:06 +01:00
commit a40fbc1716

View File

@ -570,7 +570,7 @@ class Place(CitationBase, NoteBase, MediaBase, UrlBase, PrimaryObject):
:param acquisition: instance to merge
:type acquisition: :class:'~.place.Place
"""
if acquisition.name not in self.alt_names:
if acquisition.name and (acquisition.name not in self.alt_names):
self.alt_names.append(acquisition.name)
for addendum in acquisition.alt_names: