From 231449d279123e2e62499489e4e2420249351dbe Mon Sep 17 00:00:00 2001 From: rperper Date: Tue, 6 Nov 2018 11:50:48 -0500 Subject: [PATCH] Bug in close --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index 0aaaf196e..082f9774e 100644 --- a/install/install.py +++ b/install/install.py @@ -1399,7 +1399,7 @@ class preFlightsChecks: try: fd = open(filename, 'r') lines = fd.readlines() - close(fd) + fd.close() fd = open(filename, 'w') centos_prefix = '/usr/libexec/' ubuntu_prefix = '/usr/lib/'