From 1b6f1f04eccf3ef862aabf3b5c81763c95b6c3b7 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sun, 3 Feb 2013 14:12:21 +0100 Subject: [PATCH] supybot-botchk: Fix Python 3 compatibility --- scripts/supybot-botchk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot-botchk b/scripts/supybot-botchk index ff9ed0908..186f72e29 100644 --- a/scripts/supybot-botchk +++ b/scripts/supybot-botchk @@ -132,7 +132,7 @@ if __name__ == '__main__': inst.stdin.write('source %s' % filename + os.linesep) cmdline = '%s --daemon %s' % (options.supybot, options.conffile) debug('Sending cmdline to sh process.') - inst.stdin.write(cmdline + os.linesep) + inst.stdin.write(cmdline.encode('utf-8') + os.linesep.encode('utf-8')) inst.stdin.close() debug('Received from sh process: %r' % inst.stdout.read()) ret = inst.wait()