commit | 5dfe0def6711d0e59cd1949e842c3d9dd32b4e4f | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 06 21:41:49 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 06 21:41:49 2008 +0000 |
tree | 23114421ccbd102a434c1af4715741b7e654970f | |
parent | 50da60cc5bc82799b3636c18b18f24dd208823ec [diff] [blame] |
Missed one because of indirection.
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index e0ae2e5..917f1d0 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py
@@ -269,7 +269,7 @@ # include the filename in the exception object! error = prefix + "%s" % exc.strerror else: - error = prefix + str(exc[-1]) + error = prefix + str(exc.args[-1]) return error