diff options
author | Greg Ward <gward@python.net> | 2000-07-27 02:13:20 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-07-27 02:13:20 (GMT) |
commit | 612eb9f58fe38f33484f36bcba97a4b3d8e090a9 (patch) | |
tree | 123a9cab1828c8b5d802bbc48163e5d6a5ce3f30 /Lib/distutils/cmd.py | |
parent | aa5372caa758b8bd36ae0621a490dcc0ec21d2ae (diff) | |
download | cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.zip cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.tar.gz cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.tar.bz2 |
Fixed a grab-bag of typos spotted by Rob Hooft.
Diffstat (limited to 'Lib/distutils/cmd.py')
-rw-r--r-- | Lib/distutils/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py index d450ad3..8beb5d4 100644 --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -55,7 +55,7 @@ class Command: # commands fallback 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 complicatd -- hence "self.verbose" + # value of each flag is a touch complicated -- hence "self.verbose" # (etc.) will be handled by __getattr__, below. self._verbose = None self._dry_run = None |