From 00950e8e2da4aae17b676b7b861e1111854f101b Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 7 Aug 2024 16:33:24 +0530 Subject: [PATCH] ftests/run: Fix quote warning Fix "Q003 Change outer quotes to avoid escaping inner quotes" warning. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/ftests/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftests/run.py b/tests/ftests/run.py index 83a277a1..deddde17 100644 --- a/tests/ftests/run.py +++ b/tests/ftests/run.py @@ -78,7 +78,7 @@ class Run(object): if err.find('Error: websocket: bad handshake') >= 0: # LXD sometimes throws this error on underpowered machines. # Wait a bit, then try the request again - Log.log_critical('Received \'{}\' error. Re-running command'.format(err)) + Log.log_critical("Received '{}' error. Re-running command".format(err)) time.sleep(5) ret, out, err = Run.__run(command, shell_bool, timeout) -- 2.47.3