VCS/VersionControl.py

changeset 6891
93f82da09f22
parent 6645
ad476851d7e0
equal deleted inserted replaced
6890:26c1042f2eec 6891:93f82da09f22
554 @param arguments list of arguments for the process (list of strings) 554 @param arguments list of arguments for the process (list of strings)
555 @param workingDir working directory for the process (string) 555 @param workingDir working directory for the process (string)
556 @return flag indicating normal exit (boolean) 556 @return flag indicating normal exit (boolean)
557 """ 557 """
558 if proc is None: 558 if proc is None:
559 return 559 return False
560 560
561 if workingDir: 561 if workingDir:
562 proc.setWorkingDirectory(workingDir) 562 proc.setWorkingDirectory(workingDir)
563 proc.start(program, arguments) 563 proc.start(program, arguments)
564 procStarted = proc.waitForStarted(5000) 564 procStarted = proc.waitForStarted(5000)
797 @param interval check interval for the monitor thread in seconds 797 @param interval check interval for the monitor thread in seconds
798 (integer) 798 (integer)
799 @param project reference to the project object 799 @param project reference to the project object
800 @return reference to the monitor thread (QThread) 800 @return reference to the monitor thread (QThread)
801 """ 801 """
802 return None 802 return None # __IGNORE_WARNING_M831__

eric ide

mercurial