summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/pyporting.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
index fc08d18..fb595d0 100644
--- a/Doc/howto/pyporting.rst
+++ b/Doc/howto/pyporting.rst
@@ -557,11 +557,11 @@ For distutils, use the following idiom::
except ImportError: # Python 2
from distutils.command.build_py import build_py
- setup(cmdclass = {'build_py':build_py},
+ setup(cmdclass = {'build_py': build_py},
# ...
)
- For Distribute::
+For Distribute::
setup(use_2to3=True,
# ...