Skip to content

Commit f9bd9b9

Browse files
committed
Use new style string formatting
1 parent 0dcee79 commit f9bd9b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg_resources/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1180,17 +1180,17 @@ def extraction_error(self):
11801180
The following error occurred while trying to extract file(s) to the Python egg
11811181
cache:
11821182
1183-
%s
1183+
{old_exc}
11841184
11851185
The Python egg cache directory is currently set to:
11861186
1187-
%s
1187+
{cache_path}
11881188
11891189
Perhaps your account does not have write access to this directory? You can
11901190
change the cache directory by setting the PYTHON_EGG_CACHE environment
11911191
variable to point to an accessible directory.
11921192
""").lstrip()
1193-
err = ExtractionError(tmpl % (old_exc, cache_path))
1193+
err = ExtractionError(tmpl.format(**locals()))
11941194
err.manager = self
11951195
err.cache_path = cache_path
11961196
err.original_error = old_exc

0 commit comments

Comments
 (0)