This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch TINKERPOP-1641 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 49073a07d6a2eeddddc8d0ac9019d1c1f6eed8f4 Author: HadoopMarc <[email protected]> AuthorDate: Sun May 10 20:41:30 2020 +0200 Minor revert code formatting --- gremlin-python/src/main/python/gremlin_python/driver/protocol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py index 667f828..74773b8 100644 --- a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py +++ b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py @@ -88,8 +88,8 @@ class GremlinServerWSProtocol(AbstractBaseProtocol): def data_received(self, message, results_dict): # if Gremlin Server cuts off then we get a None for the message if message is None: - raise GremlinServerError({'code': 500, 'message': 'Server disconnected - please try to reconnect', - 'attributes': {}}) + raise GremlinServerError({'code': 500, + 'message': 'Server disconnected - please try to reconnect', 'attributes': {}}) message = self._message_serializer.deserialize_message(message) request_id = message['requestId']
