From ed103d53c8b000133a4ff657eb2f79a8db40db49 Mon Sep 17 00:00:00 2001 From: Mitchell Ludwig Date: Sun, 15 Sep 2019 00:36:12 -0600 Subject: [PATCH] Removing troubleshooting write --- bin/autojump | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/autojump b/bin/autojump index 050bb3a..2f02300 100755 --- a/bin/autojump +++ b/bin/autojump @@ -118,7 +118,6 @@ def add_path(data, path, weight=10): slash_only_path = re.sub(re.escape(os.sep), "/", path) orig_weight = data.get(slash_only_path, 0) data[slash_only_path] = sqrt((orig_weight ** 2) + (weight ** 2)) - stderr.write(f"Original weight: {orig_weight} plus weight {weight} = {data[slash_only_path]}") return data, Entry(path, data[slash_only_path])