]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo found by Mark Hammond.
authorThomas Heller <theller@ctypes.org>
Fri, 20 Feb 2004 11:23:17 +0000 (11:23 +0000)
committerThomas Heller <theller@ctypes.org>
Fri, 20 Feb 2004 11:23:17 +0000 (11:23 +0000)
Lib/distutils/command/bdist_wininst.py

index 3c4c893920038aff21a6db01583738a4336b9efd..c004e6d88545e98646222a96394dac5c5c6fca14 100644 (file)
@@ -187,7 +187,7 @@ class bdist_wininst (Command):
         lines.append("title=%s" % repr(title)[1:-1])
         import time
         import distutils
-        build_info = "Build %s with distutils-%s" % \
+        build_info = "Built %s with distutils-%s" % \
                      (time.ctime(time.time()), distutils.__version__)
         lines.append("build_info=%s" % build_info)
         return string.join(lines, "\n")