From 5e5f1bc9effe546632b88f50d224659eb849d689 Mon Sep 17 00:00:00 2001 From: KikooDX <30863886+KikooDX@users.noreply.github.com> Date: Sat, 16 Nov 2019 16:18:27 +0100 Subject: [PATCH] Fixed fmargin. --- locate2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locate2.py b/locate2.py index 1521984..4b2ce3f 100644 --- a/locate2.py +++ b/locate2.py @@ -39,7 +39,7 @@ class Screen: if ask_for_input or fancy: line = "" if fancy: - for cell in self._mat[-1][:-1-fmargin]: + for cell in self._mat[-1][:-fmargin]: line += cell return input(line) return input("> ")