72 args.append('--show-updates') |
72 args.append('--show-updates') |
73 args.append('--non-interactive') |
73 args.append('--non-interactive') |
74 args.append('.') |
74 args.append('.') |
75 process.setWorkingDirectory(self.projectDir) |
75 process.setWorkingDirectory(self.projectDir) |
76 process.start('svn', args) |
76 process.start('svn', args) |
77 procStarted = process.waitForStarted() |
77 procStarted = process.waitForStarted(5000) |
78 if procStarted: |
78 if procStarted: |
79 finished = process.waitForFinished(300000) |
79 finished = process.waitForFinished(300000) |
80 if finished and process.exitCode() == 0: |
80 if finished and process.exitCode() == 0: |
81 output = \ |
81 output = \ |
82 str(process.readAllStandardOutput(), self.__ioEncoding, 'replace') |
82 str(process.readAllStandardOutput(), self.__ioEncoding, 'replace') |