85 ) |
85 ) |
86 msg = self.tr("{0} {1}{2}\n").format( |
86 msg = self.tr("{0} {1}{2}\n").format( |
87 self.tr(svnNotifyActionMap[eventDict["action"]]), |
87 self.tr(svnNotifyActionMap[eventDict["action"]]), |
88 eventDict["path"], |
88 eventDict["path"], |
89 mime) |
89 mime) |
90 if '.e4p' in eventDict["path"]: |
90 if ( |
|
91 '.epj' in eventDict["path"] or |
|
92 '.e4p' in eventDict["path"] |
|
93 ): |
91 self.__hasAddOrDelete = True |
94 self.__hasAddOrDelete = True |
92 if eventDict["action"] in [pysvn.wc_notify_action.add, |
95 if eventDict["action"] in [pysvn.wc_notify_action.add, |
93 pysvn.wc_notify_action.commit_added, |
96 pysvn.wc_notify_action.commit_added, |
94 pysvn.wc_notify_action.commit_deleted, |
97 pysvn.wc_notify_action.commit_deleted, |
95 pysvn.wc_notify_action.delete, |
98 pysvn.wc_notify_action.delete, |