From 7da79f5abbf60442d986a3499decd10b78216c75 Mon Sep 17 00:00:00 2001 From: Michael Neth Date: Sat, 9 Feb 2013 21:37:26 -0600 Subject: [PATCH] Update nest.py Fixed a typo and added some more detail about how to get the json library working when it fails. (My server is on Centos 5.2 and the python available over yum is 2.4 which did not have a json library built in.) --- nest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest.py b/nest.py index 7fcf863..edda12e 100755 --- a/nest.py +++ b/nest.py @@ -29,7 +29,7 @@ import simplejson as json except ImportError: print "No json library available. I recommend installing either python-json" - print "or simpejson." + print "or simplejson. Python 2.6+ contains json library already." sys.exit(-1) class Nest: