Skip to content

Commit

Permalink
Update nest.py
Browse files Browse the repository at this point in the history
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.)
  • Loading branch information
infernocloud committed Feb 10, 2013
1 parent 94f5df4 commit 7da79f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7da79f5

Please sign in to comment.