diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2022-05-14 20:12:06 (GMT) |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2022-05-16 08:59:44 (GMT) |
| commit | 443408312a0fd6e22bef6ffc878155479ba9eb53 (patch) | |
| tree | 23bad274d33d4279602f067166bc95bb73218689 | |
| parent | 324927f2b7bfa67415d0dddbc6bd0a36a7147b80 (diff) | |
fonts: gen.py: clearify missing exe message
| -rwxr-xr-x | src/displayapp/fonts/generate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/fonts/generate.py b/src/displayapp/fonts/generate.py index 8981061..f0af506 100755 --- a/src/displayapp/fonts/generate.py +++ b/src/displayapp/fonts/generate.py @@ -39,7 +39,7 @@ def main(): args = ap.parse_args() if not shutil.which(args.lv_font_conv): - sys.exit(f'Missing lv_font_conv. (make sure it is installed and in PATH)') + sys.exit(f"Missing lv_font_conv. Make sure it's findable (in PATH) or specify it manually") if not os.path.exists(args.config): sys.exit(f'Error: the config file {args.config} does not exist.') if not os.access(args.config, os.R_OK): |
