From 4c83a1a04e1798e96d79c38826b74cef2e9284f7 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 3 Feb 2020 11:13:13 -0500 Subject: [PATCH] Fix typos Previous commit had errors in quotations. --- confluent_server/confluent/firmwaremanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/firmwaremanager.py b/confluent_server/confluent/firmwaremanager.py index db4258d9..f3151615 100644 --- a/confluent_server/confluent/firmwaremanager.py +++ b/confluent_server/confluent/firmwaremanager.py @@ -36,13 +36,13 @@ _tracelog = None def execupdate(handler, filename, updateobj, type, owner, node): global _tracelog - if type != 'ffdc: + if type != 'ffdc': errstr = False if not os.path.exists(filename): errstr = '{0} does not appear to exist on {1}'.format( filename, socket.gethostname()) elif not os.access(filename, os.R_OK): - errstr = '{0} is not readable by confluent on {1} (ensure confluent user or group can access file and parent directories')'.format( + errstr = '{0} is not readable by confluent on {1} (ensure confluent user or group can access file and parent directories)'.format( filename, socket.gethostname()) if errstr: updateobj.handle_progress({'phase': 'error', 'progress': 0.0,