Skip to content

Commit

Permalink
Typos (#2270)
Browse files Browse the repository at this point in the history
* Update router_manager.py

* Update demux.py

* Update qemu.py
  • Loading branch information
bartblaze authored Aug 9, 2024
1 parent 630dbc1 commit 75caf41
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/cuckoo/common/demux.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion modules/machinery/qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion utils/router_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 75caf41

Please sign in to comment.