From 190caab99e8507cb6eb21649b65278467397a6ca Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 10 Feb 2025 21:41:41 +0300 Subject: [PATCH] Fix(sa-merge-all.py): Python evildoers dropped flag `U` --- playbooks/debian/sa-merge-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/debian/sa-merge-all.py b/playbooks/debian/sa-merge-all.py index 2328c0e..8849234 100755 --- a/playbooks/debian/sa-merge-all.py +++ b/playbooks/debian/sa-merge-all.py @@ -16,7 +16,7 @@ if __name__ == '__main__': for fname in args.input_fnames: try: - input_files[fname] = open(fname, 'rtU') + input_files[fname] = open(fname, 'rt') except (IOError, OSError): close_all() raise -- 2.39.5