From 59e63250e3175b60d8e63371d732e0532033a26f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 31 May 2026 18:09:49 +0900 Subject: fix(nvim-setcellwidths-table-for-udev-gothic): fix file path --- pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py') diff --git a/pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py b/pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py index 483d826..808fb84 100644 --- a/pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py +++ b/pkgs/nvim-setcellwidths-table-for-udev-gothic/main.py @@ -2,6 +2,7 @@ import argparse from collections.abc import Generator from fontTools.ttLib import TTFont from pathlib import Path +import sys import unicodedata def ambiguous_codepoints() -> Generator[int]: @@ -125,7 +126,7 @@ def main(): args = parser.parse_args() if not Path(args.font).exists(): - print(f"Font file not found: {args.font}") + print(f"Font file not found: {args.font}", file=sys.stderr) return 1 stats = analyze_font(args.font) -- cgit v1.3.1