--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgDialog.py Mon Feb 01 13:25:37 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgDialog.py Mon Feb 01 14:49:12 2021 +0100 @@ -164,7 +164,10 @@ # check for a changed project file if self.__updateCommand: for line in out.splitlines(): - if '.e4p' in line: + if ( + '.epj' in line or + '.e4p' in line + ): self.__hasAddOrDelete = True break