66 args.append('--show-updates') |
66 args.append('--show-updates') |
67 args.append('--non-interactive') |
67 args.append('--non-interactive') |
68 args.append('.') |
68 args.append('.') |
69 process.setWorkingDirectory(self.projectDir) |
69 process.setWorkingDirectory(self.projectDir) |
70 process.start('svn', args) |
70 process.start('svn', args) |
71 procStarted = process.waitForStarted() |
71 procStarted = process.waitForStarted(5000) |
72 if procStarted: |
72 if procStarted: |
73 finished = process.waitForFinished(300000) |
73 finished = process.waitForFinished(300000) |
74 if finished and process.exitCode() == 0: |
74 if finished and process.exitCode() == 0: |
75 output = \ |
75 output = \ |
76 str(process.readAllStandardOutput(), self.__ioEncoding, 'replace') |
76 str(process.readAllStandardOutput(), self.__ioEncoding, 'replace') |