From 633b726bcdbe2fd305cba72a2af1ef769a4724f8 Mon Sep 17 00:00:00 2001 From: grokbeer <1428380+grokbeer@users.noreply.github.com> Date: Fri, 8 May 2020 21:59:45 +1200 Subject: [PATCH] Fix minor typo Signed-off-by: grokbeer <1428380+grokbeer@users.noreply.github.com> --- pwnagotchi/fs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/fs/__init__.py b/pwnagotchi/fs/__init__.py index 4e0fec1..d8a56e0 100644 --- a/pwnagotchi/fs/__init__.py +++ b/pwnagotchi/fs/__init__.py @@ -154,7 +154,7 @@ class MemoryFS: source, dest = (self.disk, self.mountpoint) if to_ram else (self.mountpoint, self.disk) needed, actually_free = size_of(source), shutil.disk_usage(dest)[2] if actually_free >= needed: - logging.debug("[FS] Syning %s -> %s", source,dest) + logging.debug("[FS] Syncing %s -> %s", source,dest) if self.rsync: os.system(f"rsync -aXv --inplace --no-whole-file --delete-after {source}/ {dest}/ >/dev/null 2>&1") else: