1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 00:07:14 +03:00

Replaced old formatting with fstring

This commit is contained in:
A_D 2021-01-28 18:13:39 +02:00 committed by Athanasius
parent d5670d9b08
commit 1b0b482105

View File

@ -292,7 +292,7 @@ else: # Linux / Run from source
def __init__(self):
GenericProtocolHandler.__init__(self)
self.httpd = HTTPServer(('localhost', 0), HTTPRequestHandler)
self.redirect = 'http://localhost:%d/auth' % self.httpd.server_port
self.redirect = f'http://localhost:{self.httpd.server_port}/auth'
logger.trace(f'Web server listening on {self.redirect}')
self.thread = None