From 6f7cb7ee5cd9ec612fd65b53485daee9dd90c878 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 23 Jan 2018 10:55:27 -0500 Subject: [PATCH] Correct mistaken function call It was intended to call the frontended function, but was trying to call itself instead. Change-Id: Ic97bc3715ca14a535ad7174db6505152f8db4b7f --- pyghmi/ipmi/oem/lenovo/imm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyghmi/ipmi/oem/lenovo/imm.py b/pyghmi/ipmi/oem/lenovo/imm.py index f60a97ae..f8ef22e9 100644 --- a/pyghmi/ipmi/oem/lenovo/imm.py +++ b/pyghmi/ipmi/oem/lenovo/imm.py @@ -978,7 +978,7 @@ class XCCClient(IMMClient): return result def _refresh_token(self): - self._refresh_token(self.wc) + self._refresh_token_wc(self.wc) def _refresh_token_wc(self, wc): wc.grab_json_response('/api/providers/identity')