From: Eric S. Raymond Date: Wed, 3 Oct 2012 21:17:00 +0000 (-0400) Subject: Add a note about 2.4 compatibility. X-Git-Tag: 1.6~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6e0ff6cc160e8f6730e7558535f664063d18b6e9;p=irker.git Add a note about 2.4 compatibility. --- 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"