From: Fred Drake Date: Mon, 29 Oct 2007 16:56:50 +0000 (+0000) Subject: fix typo X-Git-Tag: v3.0a2~257 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3db4686b61a04e2017ac840dadeaf26ddf3f4730;p=python fix typo --- diff --git a/Lib/tempfile.py b/Lib/tempfile.py index d725a9d0b6..85d58e6518 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -497,7 +497,7 @@ class SpooledTemporaryFile: else: # Setting newline="\n" avoids newline translation; # this is important because otherwise on Windows we'd - # hget double newline translation upon rollover(). + # get double newline translation upon rollover(). self._file = _io.StringIO(encoding=encoding, newline="\n") self._max_size = max_size self._rolled = False