diff -r 41d09cf20415 -r 2cac5b7abcce eric6/WebBrowser/ClosedTabsManager.py --- a/eric6/WebBrowser/ClosedTabsManager.py Wed Sep 25 19:00:09 2019 +0200 +++ b/eric6/WebBrowser/ClosedTabsManager.py Wed Sep 25 19:11:13 2019 +0200 @@ -34,9 +34,11 @@ @param other reference to the object to compare against (ClosedTab) @return flag indicating equality of the tabs (boolean) """ - return self.url == other.url and \ - self.title == other.title and \ + return ( + self.url == other.url and + self.title == other.title and self.position == other.position + ) class ClosedTabsManager(QObject):