From 75caf418091148e352e4c8ab5cbdf25bbba4c447 Mon Sep 17 00:00:00 2001 From: Bart P Date: Fri, 9 Aug 2024 18:13:35 +0200 Subject: [PATCH] Typos (#2270) * Update router_manager.py * Update demux.py * Update qemu.py --- lib/cuckoo/common/demux.py | 4 ++-- modules/machinery/qemu.py | 2 +- utils/router_manager.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/cuckoo/common/demux.py b/lib/cuckoo/common/demux.py index c819f7f62c4..2af7877c18c 100644 --- a/lib/cuckoo/common/demux.py +++ b/lib/cuckoo/common/demux.py @@ -26,11 +26,11 @@ HAS_SFLOCK = True except ImportError: - print("\n\n[!] Missde dependencies. Run: poetry install\n\n") + print("\n\n[!] Missing dependencies. Run: poetry install\n\n") HAS_SFLOCK = False if sf_version and int(sf_version.split(".")[-1]) < 42: - print("You using old version of sflock! Upgrade: poetry install") + print("You are using an old version of sflock! Upgrade: poetry install") log = logging.getLogger(__name__) cuckoo_conf = Config() diff --git a/modules/machinery/qemu.py b/modules/machinery/qemu.py index 7aaf7d99992..f3250287b4f 100644 --- a/modules/machinery/qemu.py +++ b/modules/machinery/qemu.py @@ -31,7 +31,7 @@ network_interfaces = list(psutil.net_if_addrs().keys()) HAVE_NETWORKIFACES = True except ImportError: - print("Missde dependency: pip3 install psutil") + print("Missing dependency: pip3 install psutil") # this whole semi-hardcoded commandline thing is not the best # but in the config files we can't do arrays etc so we'd have to parse the diff --git a/utils/router_manager.py b/utils/router_manager.py index 8c7b7559e73..75eca81722f 100644 --- a/utils/router_manager.py +++ b/utils/router_manager.py @@ -25,7 +25,7 @@ network_interfaces = list(psutil.net_if_addrs().keys()) HAVE_NETWORKIFACES = True except ImportError: - print("Missde dependency: poetry run pip install psutil") + print("Missing dependency: poetry run pip install psutil") def _rooter_response_check(rooter_response):