From 3fc14cbaadb2d50ec83285ea2cfd0fd214537c4c Mon Sep 17 00:00:00 2001 From: Ron Nazarov Date: Sun, 15 Oct 2023 18:44:30 +0100 Subject: [PATCH] Replace #!/bin/env with #!/usr/bin/env in bot.py Neither is POSIX, but /usr/bin/env is more widely used and /bin/env does not exist on GNU Guix System. --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 01a2940..f3b0250 100755 --- a/bot.py +++ b/bot.py @@ -1,4 +1,4 @@ -#!/bin/env python3 +#!/usr/bin/env python3 # SPDX-License-Identifier: MIT import asyncio, configparser from irctokens import build, Line