From 42d114395352ef0765bb854d7bb8822e049ce3dc Mon Sep 17 00:00:00 2001 From: Joel Spadin Date: Sat, 5 Oct 2024 22:16:35 -0500 Subject: [PATCH] Fix wrong command suggestion with missing home dir Fixes #1 --- zmk/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmk/exceptions.py b/zmk/exceptions.py index 963aaa4..5408aa6 100644 --- a/zmk/exceptions.py +++ b/zmk/exceptions.py @@ -50,6 +50,6 @@ class FatalHomeMissing(FatalError): def __init__(self, path: Path): super().__init__( f'Home directory "{path}" is missing.\n' - 'Run "zmk config user.home=/path/to/zmk-config" if you moved it, ' + 'Run "zmk config user.home /path/to/zmk-config" if you moved it, ' 'or run "zmk init" to create a new config repo.' )