summary refs log tree commit diff
path: root/README.rst
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2015-01-09 18:14:05 +0000
committerMatthew Hodgson <matthew@matrix.org>2015-01-09 18:14:05 +0000
commitbfb198a6eb0d1c0b2c73e88b8420549f84ebd626 (patch)
tree4b3d541ba5b6b6aa791c432f6c535700d6b6449b /README.rst
parentoops (diff)
downloadsynapse-bfb198a6eb0d1c0b2c73e88b8420549f84ebd626.tar.xz
don't clobber pythonpath
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 326f1d9cc1..768da3df64 100644
--- a/README.rst
+++ b/README.rst
@@ -112,10 +112,10 @@ Your python may not give priority to locally installed libraries over system
 libraries, in which case you must add your local packages to your python path::
 
     $ # on Linux:
-    $ export PYTHONPATH=$HOME/.local/lib/python2.7/site-packages
+    $ export PYTHONPATH=$HOME/.local/lib/python2.7/site-packages:$PYTHONPATH
 
     $ # on OSX:
-    $ export PYTHONPATH=$HOME/Library/Python/2.7/lib/python/site-packages
+    $ export PYTHONPATH=$HOME/Library/Python/2.7/lib/python/site-packages:$PYTHONPATH
 
 For reliable VoIP calls to be routed via this homeserver, you MUST configure
 a TURN server.  See docs/turn-howto.rst for details.