468 outputList = output.strip().split(None, 1) |
468 outputList = output.strip().split(None, 1) |
469 if len(outputList) == 2: |
469 if len(outputList) == 2: |
470 self.__projectRevision = outputList[0].strip() |
470 self.__projectRevision = outputList[0].strip() |
471 if self.__projectRevision.endswith("+"): |
471 if self.__projectRevision.endswith("+"): |
472 self.__projectRevision = self.__projectRevision[:-1] |
472 self.__projectRevision = self.__projectRevision[:-1] |
473 self.__projectBranch = outputList[1].strip() |
473 self.__projectBranch = outputList[1].strip() |
474 |
474 |
475 def __getClosedBranches(self): |
475 def __getClosedBranches(self): |
476 """ |
476 """ |
477 Private method to get the list of closed branches. |
477 Private method to get the list of closed branches. |
478 """ |
478 """ |