diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 09:08:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 09:08:57 (GMT) |
commit | 76834a1a2773acf66fbd3db01f587a20701c0a79 (patch) | |
tree | 004eebc4cc7ac67aa48666e667d894b92f00e92f /Doc/tutorial/interpreter.rst | |
parent | 15d9fe7ecf35ce63bd4b3f9faf262065aa11b7b9 (diff) | |
download | cpython-76834a1a2773acf66fbd3db01f587a20701c0a79.zip cpython-76834a1a2773acf66fbd3db01f587a20701c0a79.tar.gz cpython-76834a1a2773acf66fbd3db01f587a20701c0a79.tar.bz2 |
Fix merging mistake: wrong Python version.
Diffstat (limited to 'Doc/tutorial/interpreter.rst')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 6bdc1c5..25380e4 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -252,7 +252,7 @@ of your user site-packages directory. Start Python and run this code: >>> import site >>> site.getusersitepackages() - '/home/user/.local/lib/python3.2/site-packages' + '/home/user/.local/lib/python2.7/site-packages' Now you can create a file named :file:`usercustomize.py` in that directory and put anything you want in it. It will affect every invocation of Python, unless |