From 3c290d64a56c7d0cf4b3e1768383669897398cd2 Mon Sep 17 00:00:00 2001 From: Ahmed Muawia Khan Date: Mon, 26 Feb 2018 15:42:17 +0100 Subject: [PATCH] re-add f-string to web stream --- bigchaindb/tendermint/event_stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/tendermint/event_stream.py b/bigchaindb/tendermint/event_stream.py index 3c989f5d..2191924b 100644 --- a/bigchaindb/tendermint/event_stream.py +++ b/bigchaindb/tendermint/event_stream.py @@ -13,7 +13,7 @@ from bigchaindb.tendermint.utils import decode_transaction_base64 HOST = getenv('BIGCHAINDB_TENDERMINT_HOST', 'localhost') PORT = int(getenv('BIGCHAINDB_TENDERMINT_PORT', 46657)) -URL = 'ws://{HOST}:{PORT}/websocket' +URL = f'ws://{HOST}:{PORT}/websocket' logger = logging.getLogger(__name__)