--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sat Nov 30 15:52:42 2024 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sat Nov 30 17:47:23 2024 +0100 @@ -1485,9 +1485,9 @@ @type str """ errLines = [ - l - for l in out.splitlines(keepends=True) - if "no such file in rev" not in l + line + for line in out.splitlines(keepends=True) + if "no such file in rev" not in line ] if errLines: self.errorGroup.show()