From aba5e0a7ef0a27c2a1c2155bb93b7e6c40a3c44e Mon Sep 17 00:00:00 2001 From: Mark Date: Tue, 2 Feb 2021 16:03:49 -0800 Subject: Fix typo in error message --- snekbox/nsjail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snekbox/nsjail.py b/snekbox/nsjail.py index c329434..55ece65 100644 --- a/snekbox/nsjail.py +++ b/snekbox/nsjail.py @@ -55,7 +55,7 @@ class NsJail: log.fatal(f"The NsJail config at {NSJAIL_CFG!r} could not be found.") sys.exit(1) except OSError as e: - log.fatal(f"The NsJail config at {NSJAIL_CFG!r} could not read.", exc_info=e) + log.fatal(f"The NsJail config at {NSJAIL_CFG!r} could not be read.", exc_info=e) sys.exit(1) try: -- cgit v1.2.3