summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-06-18 21:28:28 (GMT)
committerFred Drake <fdrake@acm.org>2004-06-18 21:28:28 (GMT)
commit2b2fe94cde439e020ec2a5152e3d3e1dfec6ce9d (patch)
tree93fe68c9e3b3c1573ce85ca2785e50dabff0fcda /Lib/distutils
parent4dbda47aea1759faa68e491237f078cf0c7050be (diff)
downloadcpython-2b2fe94cde439e020ec2a5152e3d3e1dfec6ce9d.zip
cpython-2b2fe94cde439e020ec2a5152e3d3e1dfec6ce9d.tar.gz
cpython-2b2fe94cde439e020ec2a5152e3d3e1dfec6ce9d.tar.bz2
fix typo
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py
index fef4939..9362410 100644
--- a/Lib/distutils/cmd.py
+++ b/Lib/distutils/cmd.py
@@ -68,7 +68,7 @@ class Command:
# Per-command versions of the global flags, so that the user can
# customize Distutils' behaviour command-by-command and let some
- # commands fallback on the Distribution's behaviour. None means
+ # commands fall back on the Distribution's behaviour. None means
# "not defined, check self.distribution's copy", while 0 or 1 mean
# false and true (duh). Note that this means figuring out the real
# value of each flag is a touch complicated -- hence "self._dry_run"