eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py

changeset 8047
b5594178c7fa
parent 7923
91e843545d9a
child 8142
43248bafe9b2
child 8143
2c730d5fd177
--- a/eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py	Mon Feb 01 13:25:37 2021 +0100
+++ b/eric6/Plugins/VcsPlugins/vcsGit/GitDialog.py	Mon Feb 01 14:49:12 2021 +0100
@@ -220,7 +220,10 @@
         # check for a changed project file
         if self.__updateCommand:
             for line in out.splitlines():
-                if '.e4p' in line or '.e6p' in line:
+                if (
+                    '.epj' in line or
+                    '.e4p' in line
+                ):
                     self.__hasAddOrDelete = True
                     break
         

eric ide

mercurial