Skip to content

Commit 654d472

Browse files
committed
fix concurrent.futures AttributeError message
1 parent ee60550 commit 654d472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/concurrent/futures/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ def __getattr__(name):
5050
ThreadPoolExecutor = te
5151
return te
5252

53-
raise AttributeError(f"module {__name__} has no attribute {name}")
53+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")

0 commit comments

Comments
 (0)