diff --git a/src/dcspy/starter.py b/src/dcspy/starter.py index 4662a25e7..88d8bdd26 100644 --- a/src/dcspy/starter.py +++ b/src/dcspy/starter.py @@ -14,6 +14,7 @@ LOG = getLogger(__name__) LOOP_FLAG = True +SUPPORTERS = ['Jon Wardell', 'Simon Leigh', 'Alexander Leschanz', 'Sireyn', 'Nick Thain', 'BrotherBloat'] __version__ = '3.5.2' @@ -29,8 +30,7 @@ def _handle_connection(logi_device: LogitechDevice, parser: ProtocolParser, sock """ start_time = time() LOG.info('Waiting for DCS connection...') - support_banner = _supporters(text='Huge thanks to: Simon Leigh, Alexander Leschanz, Sireyn, Nick Thain, BrotherBloat and others! For support and help! ', - width=26) + support_banner = _supporters(text=f'Huge thanks to: {", ".join(SUPPORTERS)} and others! For support and help! ', width=26) while not event.is_set(): try: dcs_bios_resp = sock.recv(2048)