8353:799196d0b05d | 8354:12ebd3934fef |
---|---|
20 | 20 |
21 from E5Gui.E5Application import e5App | 21 from E5Gui.E5Application import e5App |
22 from E5Gui import E5MessageBox | 22 from E5Gui import E5MessageBox |
23 from E5Gui.E5OverrideCursor import E5OverrideCursor | 23 from E5Gui.E5OverrideCursor import E5OverrideCursor |
24 | 24 |
25 from E5Utilities.E5MutexLocker import E5MutexLocker | 25 from EricUtilities.EricMutexLocker import EricMutexLocker |
26 | 26 |
27 from .SvnConst import svnStatusMap | 27 from .SvnConst import svnStatusMap |
28 from .SvnDialogMixin import SvnDialogMixin | 28 from .SvnDialogMixin import SvnDialogMixin |
29 | 29 |
30 from .Ui_SvnStatusDialog import Ui_SvnStatusDialog | 30 from .Ui_SvnStatusDialog import Ui_SvnStatusDialog |
321 | 321 |
322 with E5OverrideCursor(): | 322 with E5OverrideCursor(): |
323 cwd = os.getcwd() | 323 cwd = os.getcwd() |
324 os.chdir(self.dname) | 324 os.chdir(self.dname) |
325 try: | 325 try: |
326 with E5MutexLocker(self.vcs.vcsExecutionMutex): | 326 with EricMutexLocker(self.vcs.vcsExecutionMutex): |
327 for name in fnames: | 327 for name in fnames: |
328 # step 1: determine changelists and their files | 328 # step 1: determine changelists and their files |
329 changelistsDict = {} | 329 changelistsDict = {} |
330 if hasattr(self.client, 'get_changelist'): | 330 if hasattr(self.client, 'get_changelist'): |
331 if recurse: | 331 if recurse: |