From dbf3b0427995890730a4c1f39620acb50b0e6019 Mon Sep 17 00:00:00 2001 From: adrienmalin <41926238+adrienmalin@users.noreply.github.com> Date: Fri, 15 Feb 2019 12:31:24 +0100 Subject: [PATCH] fix error in command help message --- terminis/terminis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminis/terminis.py b/terminis/terminis.py index a1515c3..306c4a7 100644 --- a/terminis/terminis.py +++ b/terminis/terminis.py @@ -737,7 +737,7 @@ def edit(): def print_help(): print("Usage:") - print("python terminis.py [--edit|--help|n]") + print("terminis [--edit|--help|n]") print(" --edit: edit controls in text editor") print(" --help: show command usage (this message)") print(" n (integer between 1 and 15): start at level n")