diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-10 12:01:23 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-10 12:01:23 +0300 |
commit | dba903993a8d3e13d2cf83d6a8912e908025b17b (patch) | |
tree | b0f7d957452d40ce384e5d0a1382067e3379f60f /Doc/tutorial/appendix.rst | |
parent | 387235085c5a6a1d823b0af3fabb42830c88f984 (diff) | |
download | cpython-git-dba903993a8d3e13d2cf83d6a8912e908025b17b.tar.gz |
Issue #23921: Standardized documentation whitespace formatting.
Original patch by James Edwards.
Diffstat (limited to 'Doc/tutorial/appendix.rst')
-rw-r--r-- | Doc/tutorial/appendix.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/appendix.rst b/Doc/tutorial/appendix.rst index e04459b2d9..ffd16aa97a 100644 --- a/Doc/tutorial/appendix.rst +++ b/Doc/tutorial/appendix.rst @@ -92,7 +92,7 @@ in the script:: filename = os.environ.get('PYTHONSTARTUP') if filename and os.path.isfile(filename): with open(filename) as fobj: - startup_file = fobj.read() + startup_file = fobj.read() exec(startup_file) |