https://gitlab.com/esr/irker/-/merge_requests/35 From 765334f1e9663c09d507a589cdd4e8c002c1fafc Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 18 Jan 2026 17:53:39 +0000 Subject: [PATCH] irkerd: fix typo for -P --- irkerd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irkerd b/irkerd index f22c343..71f0da0 100755 --- a/irkerd +++ b/irkerd @@ -1219,7 +1219,7 @@ if __name__ == "__main__": LOG.setLevel(log_level) if args.password_file: - with args.file as f: + with args.password_file as f: # IRC passwords must be at most 128 bytes, and cannot contain a \n args.password = f.read(128).split("\n")[0].strip() -- GitLab