* src/RelLib.py (Event.are_equal): Only compare place handles if
at least one if them is non-empty. svn: r3935
This commit is contained in:
		@@ -1548,7 +1548,8 @@ class Event(PrimaryObject,DataObj):
 | 
			
		||||
        """
 | 
			
		||||
        if other == None:
 | 
			
		||||
            other = Event (None)
 | 
			
		||||
        if (self.name != other.name or self.place != other.place or
 | 
			
		||||
        if (self.name != other.name or 
 | 
			
		||||
            ((self.place or other.place) and (self.place != other.place)) or
 | 
			
		||||
            self.description != other.description or self.cause != other.cause or
 | 
			
		||||
            self.private != other.private or
 | 
			
		||||
            (not self.get_date_object().is_equal(other.get_date_object())) or
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user