Appends a String to another string with a "+" if the org string is not "". :param org: Original String :param app: String which is to be appended to the org string :return:
(self, org, app)
| 475 | event.Skip(True) |
| 476 | |
| 477 | def appendString(self, org, app): |
| 478 | """ |
| 479 | Appends a String to another string with a "+" if the org string is not "". |
| 480 | |
| 481 | :param org: Original String |
| 482 | :param app: String which is to be appended to the org string |
| 483 | :return: |
| 484 | """ |
| 485 | if org == "-": |
| 486 | return app |
| 487 | else: |
| 488 | return org + " + " + app |
| 489 | |
| 490 | def updateList(self, outlist, duration=None): |
| 491 | ''' |