summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_py.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-12-06 21:01:19 (GMT)
committerFred Drake <fdrake@acm.org>2001-12-06 21:01:19 (GMT)
commit21d45356b8a22bb3091a97f50b919b57798675f5 (patch)
treebdfd02aba3e9f0a243296721cb8ec2c75be9c08a /Lib/distutils/command/build_py.py
parentb94b849d65af71b4b432a74fdaef8ccd88209cc0 (diff)
downloadcpython-21d45356b8a22bb3091a97f50b919b57798675f5.zip
cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.gz
cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/distutils/command/build_py.py')
-rw-r--r--Lib/distutils/command/build_py.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 6fd4417..527e81d 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -106,7 +106,7 @@ class build_py (Command):
self.byte_compile(self.get_outputs(include_bytecode=0))
# run ()
-
+
def get_package_dir (self, package):
"""Return the directory, relative to the top of the source
@@ -178,13 +178,13 @@ class build_py (Command):
# Either not in a package at all (__init__.py not expected), or
# __init__.py doesn't exist -- so don't return the filename.
return
-
+
# check_package ()
def check_module (self, module, module_file):
if not os.path.isfile(module_file):
- self.warn("file %s (for module %s) not found" %
+ self.warn("file %s (for module %s) not found" %
(module_file, module))
return 0
else: