--- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDialog.py Mon Feb 01 13:25:37 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnDialog.py Mon Feb 01 14:49:12 2021 +0100 @@ -186,7 +186,10 @@ if not self.__hasAddOrDelete and len(s) > 0: # check the output for line in s.split(os.linesep): - if '.e4p' in line: + if ( + '.epj' in line or + '.e4p' in line + ): self.__hasAddOrDelete = True break if line and line[0:2].strip() in ['A', 'D']: