From d8f36df7f4cd944fc816834506705e621e0e2a20 Mon Sep 17 00:00:00 2001 From: bxdd Date: Wed, 23 Dec 2020 18:28:05 +0000 Subject: [PATCH] debug on macos --- qlib/data/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qlib/data/ops.py b/qlib/data/ops.py index 861a69bf9..f80ca7450 100644 --- a/qlib/data/ops.py +++ b/qlib/data/ops.py @@ -1401,7 +1401,7 @@ class OpsWrapper(object): def __getattr__(self, key): if key not in self._ops: - raise AttributeError("The operator [{}] is not registered".format(key)) + raise AttributeError("The operator [{0}] is not registered, and all dict is {1}".format(key, self._ops)) return self._ops[key]