From d94448754b2d6df47f32b31a7ca08780d9d9684f Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 21 May 2026 10:58:17 -0400 Subject: [PATCH] Remove stray debug output Change-Id: I326fb4cc3f53fb1228b53139798f5895d62a99c7 --- pyghmi/redfish/oem/ami/megarac.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyghmi/redfish/oem/ami/megarac.py b/pyghmi/redfish/oem/ami/megarac.py index 95168058..28791baf 100644 --- a/pyghmi/redfish/oem/ami/megarac.py +++ b/pyghmi/redfish/oem/ami/megarac.py @@ -57,7 +57,6 @@ class OEMHandler(generic.OEMHandler): if status < 200 or status >= 300: raise Exception('Error establishing web session') - print(repr(rsp)) if 'CSRFToken' in rsp: self.csrftok = rsp['CSRFToken'] wc.set_header('X-CSRFTOKEN', self.csrftok)