From a1cf4e2e47adf5f41da5584920df09dc1fd5ce36 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Mon, 15 Nov 2021 17:10:18 -0800 Subject: [PATCH] lf_cleanup: Rename undefined variable Signed-off-by: Matthew Stidham --- py-scripts/lf_cleanup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/py-scripts/lf_cleanup.py b/py-scripts/lf_cleanup.py index 8b3face8..b1a1901f 100755 --- a/py-scripts/lf_cleanup.py +++ b/py-scripts/lf_cleanup.py @@ -178,9 +178,8 @@ class lf_clean(Realm): # also clean the endp when cleaning cxs still_looking_cxs = self.cxs_clean() still_looking_endp = self.endp_clean() - print("clean_cxs: still_looking_cxs {looking_cxs} still_looking_endp {looking_endp}"\ - .format(looking_cxs=still_looking_cxs,looking_endp=still_looking_endp)) - if self.clean_endp and not clean_cxs: + print("clean_cxs: still_looking_cxs {looking_cxs} still_looking_endp {looking_endp}".format(looking_cxs=still_looking_cxs,looking_endp=still_looking_endp)) + if self.clean_endp and not self.clean_cxs: still_looking_endp = self.endp_clean() print("clean_endp: still_looking_endp {looking_endp}".format(looking_endp=still_looking_endp))