From 2f758a57b42464901bd38c89aeb299f6cca4a248 Mon Sep 17 00:00:00 2001 From: sTiKyt Date: Tue, 11 Aug 2020 16:34:31 +0300 Subject: [PATCH] Fixed small typos --- Defs/ActionManager/Server/server_runner.py | 4 ++-- Defs/ThemeManager/theme.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Defs/ActionManager/Server/server_runner.py b/Defs/ActionManager/Server/server_runner.py index 9477a77..0963da0 100644 --- a/Defs/ActionManager/Server/server_runner.py +++ b/Defs/ActionManager/Server/server_runner.py @@ -286,11 +286,11 @@ def start_localxpose(port): else: if simple_informant.check_platform( "system") == "Linux" and simple_informant.check_platform( - "architecture" == "x86_64"): + "architecture" is "x86_64"): localxpose_url = "https://lxpdownloads.sgp1.digitaloceanspaces.com/cli/loclx-linux-amd64.zip" elif simple_informant.check_platform( "system") == "Linux" and simple_informant.check_platform( - "architecture" == "aarch64"): + "architecture" is "aarch64"): localxpose_url = "https://lxpdownloads.sgp1.digitaloceanspaces.com/cli/loclx-linux-arm64.zip" with url_request.urlopen(localxpose_url) as loclxzip: with ZipFile(BytesIO(loclxzip.read())) as zip_file: diff --git a/Defs/ThemeManager/theme.py b/Defs/ThemeManager/theme.py index 443c5e8..40d420b 100644 --- a/Defs/ThemeManager/theme.py +++ b/Defs/ThemeManager/theme.py @@ -6,4 +6,4 @@ # -default_palette = ['\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'] #Will be replaced later, TODO \ No newline at end of file +default_palette = ['\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'] # TODO Will be replaced later,