From: wilcoxjg <wilcoxjg@gmail.com>
Date: Thu, 9 Aug 2007 03:43:40 +0000 (-0700)
Subject: changed README to inslude simplejson in "The Python Way" install
X-Git-Url: https://git.rkrishnan.org/vdrive/$sch_link?a=commitdiff_plain;h=d7c842c4a98c481694e984438435de43d5920c27;p=tahoe-lafs%2Ftahoe-lafs.git

changed README to inslude simplejson in "The Python Way" install
---

diff --git a/README b/README
index 61de0e27..ea865e29 100644
--- a/README
+++ b/README
@@ -171,10 +171,10 @@ Running-In-Place Way.  Choose one:
 
   The Python Way is to execute "setup.py install" for each Python package.
 
-  You'll need to run "setup.py install" four separate times, one for each of
-  the four subpackages (allmydata, allmydata.Crypto, foolscap, and zfec).
+  You'll need to run "setup.py install" five separate times, one for each of
+  the five subpackages (allmydata, allmydata.Crypto, foolscap, simplejson, and zfec).
 
-    for PACKAGE in zfec Crypto foolscap ; do
+    for PACKAGE in zfec Crypto foolscap simplejson; do
       cd src/${PACKAGE} && python setup.py install && cd ../..
     done