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