We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dcee79 commit f9bd9b9Copy full SHA for f9bd9b9
pkg_resources/__init__.py
@@ -1180,17 +1180,17 @@ def extraction_error(self):
1180
The following error occurred while trying to extract file(s) to the Python egg
1181
cache:
1182
1183
- %s
+ {old_exc}
1184
1185
The Python egg cache directory is currently set to:
1186
1187
+ {cache_path}
1188
1189
Perhaps your account does not have write access to this directory? You can
1190
change the cache directory by setting the PYTHON_EGG_CACHE environment
1191
variable to point to an accessible directory.
1192
""").lstrip()
1193
- err = ExtractionError(tmpl % (old_exc, cache_path))
+ err = ExtractionError(tmpl.format(**locals()))
1194
err.manager = self
1195
err.cache_path = cache_path
1196
err.original_error = old_exc
0 commit comments