From a5df8e353279c60da14b5ecf8480b65208a0125e Mon Sep 17 00:00:00 2001 From: Si-Yuan Date: Tue, 15 Jan 2019 05:52:51 +0800 Subject: [PATCH] minor fix (#3770) --- python/ray/function_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/function_manager.py b/python/ray/function_manager.py index f530aeabd..45c22004b 100644 --- a/python/ray/function_manager.py +++ b/python/ray/function_manager.py @@ -449,7 +449,7 @@ class FunctionActorManager(object): except KeyError as e: message = ("Error occurs in get_execution_info: " "driver_id: %s, function_descriptor: %s. Message: %s" % - driver_id, function_descriptor, e) + (driver_id, function_descriptor, e)) raise KeyError(message) return info