316 (string) |
316 (string) |
317 @return output and errors of the command server (string). In case |
317 @return output and errors of the command server (string). In case |
318 output and/or error functions were given, the respective return |
318 output and/or error functions were given, the respective return |
319 value will be an empty string. |
319 value will be an empty string. |
320 """ |
320 """ |
|
321 if not self.__started: |
|
322 # try to start the Mercurial command server |
|
323 ok, startError = self.startServer() |
|
324 if not ok: |
|
325 return "", startError |
|
326 |
321 self.__commandRunning = True |
327 self.__commandRunning = True |
322 outputChannels = {} |
328 outputChannels = {} |
323 outputBuffer = None |
329 outputBuffer = None |
324 errorBuffer = None |
330 errorBuffer = None |
325 |
331 |