From 09a87161a240d84cf20e02b6ef6faea0172d8c01 Mon Sep 17 00:00:00 2001 From: nulano Date: Thu, 9 Jul 2020 23:46:28 +0200 Subject: [PATCH] fix sys.stdout reference --- src/PIL/PSDraw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/PSDraw.py b/src/PIL/PSDraw.py index 762d31e88..a080ce44d 100644 --- a/src/PIL/PSDraw.py +++ b/src/PIL/PSDraw.py @@ -26,7 +26,7 @@ from . import EpsImagePlugin class PSDraw: """ Sets up printing to the given file. If **fp** is omitted, - :py:attr:`sys.stdout` is assumed. + :py:data:`sys.stdout` is assumed. """ def __init__(self, fp=None):