summaryrefslogtreecommitdiff
path: root/src/displayapp/fonts
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2022-05-14 22:12:06 +0200
committerRiku Isokoski <riksu9000@gmail.com>2022-05-16 11:59:44 +0300
commit443408312a0fd6e22bef6ffc878155479ba9eb53 (patch)
tree23bad274d33d4279602f067166bc95bb73218689 /src/displayapp/fonts
parent324927f2b7bfa67415d0dddbc6bd0a36a7147b80 (diff)
fonts: gen.py: clearify missing exe message
Diffstat (limited to 'src/displayapp/fonts')
-rwxr-xr-xsrc/displayapp/fonts/generate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/fonts/generate.py b/src/displayapp/fonts/generate.py
index 89810614..f0af506c 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):