projects
/
irker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88e20c0
)
Add a note about 2.4 compatibility.
author
Eric S. Raymond
<esr@thyrsus.com>
Wed, 3 Oct 2012 21:17:00 +0000
(17:17 -0400)
committer
Eric S. Raymond
<esr@thyrsus.com>
Wed, 3 Oct 2012 21:17:00 +0000
(17:17 -0400)
irkerd
patch
|
blob
|
history
diff --git
a/irkerd
b/irkerd
index 51e13c274ad5a8460ebcfb9f0ee1c8fda0b71819..27f8c4338d3578de1804f4aec96a31e4db4adf43 100755
(executable)
--- 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"