567 for line in message: |
567 for line in message: |
568 msg.append(line.strip()) |
568 msg.append(line.strip()) |
569 |
569 |
570 rev, node = revision.split(":") |
570 rev, node = revision.split(":") |
571 if rev in self.__closedBranchesRevs: |
571 if rev in self.__closedBranchesRevs: |
572 closedStr = "--" |
572 closedStr = " \u2612" |
573 else: |
573 else: |
574 closedStr = "" |
574 closedStr = "" |
575 msgtxt = msg[0] |
575 msgtxt = msg[0] |
576 if len(msgtxt) > 30: |
576 if len(msgtxt) > 30: |
577 msgtxt = "{0}...".format(msgtxt[:30]) |
577 msgtxt = "{0}...".format(msgtxt[:30]) |