From 6e0ff6cc160e8f6730e7558535f664063d18b6e9 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 3 Oct 2012 17:17:00 -0400 Subject: [PATCH] Add a note about 2.4 compatibility. --- irkerd | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/irkerd b/irkerd index 51e13c2..27f8c43 100755 --- a/irkerd +++ b/irkerd @@ -61,8 +61,10 @@ except ImportError: import sys, getopt, urlparse, time, random import threading, Queue, SocketServer import irc.client, logging -try: import simplejson as json -except ImportError: import json +try: + import simplejson as json # Faster, also makes us Python-2.4-compatible +except ImportError: + import json version = "1.5" -- 2.26.2