lf_cleanup: Rename undefined variable

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-15 17:10:18 -08:00
parent 39746c5ce0
commit a1cf4e2e47

View File

@@ -178,9 +178,8 @@ class lf_clean(Realm):
# also clean the endp when cleaning cxs # also clean the endp when cleaning cxs
still_looking_cxs = self.cxs_clean() still_looking_cxs = self.cxs_clean()
still_looking_endp = self.endp_clean() still_looking_endp = self.endp_clean()
print("clean_cxs: still_looking_cxs {looking_cxs} still_looking_endp {looking_endp}"\ print("clean_cxs: still_looking_cxs {looking_cxs} still_looking_endp {looking_endp}".format(looking_cxs=still_looking_cxs,looking_endp=still_looking_endp))
.format(looking_cxs=still_looking_cxs,looking_endp=still_looking_endp)) if self.clean_endp and not self.clean_cxs:
if self.clean_endp and not clean_cxs:
still_looking_endp = self.endp_clean() still_looking_endp = self.endp_clean()
print("clean_endp: still_looking_endp {looking_endp}".format(looking_endp=still_looking_endp)) print("clean_endp: still_looking_endp {looking_endp}".format(looking_endp=still_looking_endp))