diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
commit | 21d45356b8a22bb3091a97f50b919b57798675f5 (patch) | |
tree | bdfd02aba3e9f0a243296721cb8ec2c75be9c08a /Lib/distutils/command/build_clib.py | |
parent | b94b849d65af71b4b432a74fdaef8ccd88209cc0 (diff) | |
download | cpython-21d45356b8a22bb3091a97f50b919b57798675f5.zip cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.gz cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/distutils/command/build_clib.py')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 69ed044..b659147 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -156,7 +156,7 @@ class build_clib (Command): "must be a string (the library name)" if '/' in lib[0] or (os.sep != '/' and os.sep in lib[0]): raise DistutilsSetupError, \ - ("bad library name '%s': " + + ("bad library name '%s': " + "may not contain directory separators") % \ lib[0] @@ -195,7 +195,7 @@ class build_clib (Command): ("in 'libraries' option (library '%s'), " "'sources' must be present and must be " "a list of source filenames") % lib_name - + filenames.extend(sources) return filenames |