re-add f-string to web stream

This commit is contained in:
Ahmed Muawia Khan 2018-02-26 15:42:17 +01:00
parent 8fd50b23c8
commit 3c290d64a5

View File

@ -13,7 +13,7 @@ from bigchaindb.tendermint.utils import decode_transaction_base64
HOST = getenv('BIGCHAINDB_TENDERMINT_HOST', 'localhost') HOST = getenv('BIGCHAINDB_TENDERMINT_HOST', 'localhost')
PORT = int(getenv('BIGCHAINDB_TENDERMINT_PORT', 46657)) PORT = int(getenv('BIGCHAINDB_TENDERMINT_PORT', 46657))
URL = 'ws://{HOST}:{PORT}/websocket' URL = f'ws://{HOST}:{PORT}/websocket'
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)