diff options
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 69ed0445510..b659147b26a 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 |