Skip to content

Commit 4c3de67

Browse files
committed
use '%s' consistently
1 parent 84f7020 commit 4c3de67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/multiprocessing/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ def _get_base_temp_dir(tempfile):
192192
try:
193193
base_system_tempdir = tempfile._get_default_tempdir(dirlist)
194194
except FileNotFoundError:
195-
warn("Process-wide temporary directory %r will not be usable for "
195+
warn("Process-wide temporary directory %s will not be usable for "
196196
"creating socket files and no usable system-wide temporary "
197-
"directory was found in %r", base_tempdir, dirlist)
197+
"directory was found in %s", base_tempdir, dirlist)
198198
# At this point, the system-wide temporary directory is not usable
199199
# but we may assume that the user-defined one is, even if we will
200200
# not be able to write socket files out there.

0 commit comments

Comments
 (0)