From 908da627b8a37290a23996e6fe0f5f6c8d3273b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emirhan=20Karag=C3=BCl?= Date: Thu, 28 Apr 2022 00:39:15 +0200 Subject: [PATCH] Fix style of eq operator --- share/tools/web_config/webconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/tools/web_config/webconfig.py b/share/tools/web_config/webconfig.py index 7289e5879..18e9038e5 100755 --- a/share/tools/web_config/webconfig.py +++ b/share/tools/web_config/webconfig.py @@ -141,9 +141,9 @@ def escape_fish_cmd(text): def strip_one_layer(text, char): # Strip the text from one layer of a given character - if text[-1]==char: + if text[-1] == char: text = text[:-1] - if text[0]==char: + if text[0] == char: text = text[1:] return text