summaryrefslogtreecommitdiff
path: root/Lib/distutils/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/cmd.py')
-rw-r--r--Lib/distutils/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py
index 9362410487..be8e826fdb 100644
--- a/Lib/distutils/cmd.py
+++ b/Lib/distutils/cmd.py
@@ -79,7 +79,7 @@ class Command:
# verbose is largely ignored, but needs to be set for
# backwards compatibility (I think)?
self.verbose = dist.verbose
-
+
# Some commands define a 'self.force' option to ignore file
# timestamps, but methods defined *here* assume that
# 'self.force' exists for all commands. So define it here
@@ -100,7 +100,7 @@ class Command:
# XXX A more explicit way to customize dry_run would be better.
-
+
def __getattr__ (self, attr):
if attr == 'dry_run':
myval = getattr(self, "_" + attr)