838 if len(outputList) == 2: |
838 if len(outputList) == 2: |
839 outputRevs = outputList[0].strip() |
839 outputRevs = outputList[0].strip() |
840 if outputRevs.endswith("+"): |
840 if outputRevs.endswith("+"): |
841 outputRevs = outputRevs[:-1] |
841 outputRevs = outputRevs[:-1] |
842 self.__projectWorkingDirParents = outputRevs.split('+') |
842 self.__projectWorkingDirParents = outputRevs.split('+') |
|
843 else: |
|
844 self.__projectWorkingDirParents = [outputRevs] |
843 self.__projectBranch = outputList[1].strip() |
845 self.__projectBranch = outputList[1].strip() |
844 |
846 |
845 def __getClosedBranches(self): |
847 def __getClosedBranches(self): |
846 """ |
848 """ |
847 Private method to get the list of closed branches. |
849 Private method to get the list of closed branches. |