commit | 62ab10a05acdc8bb45549e4df6fd6fb5f4623aab | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Oct 12 20:10:51 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Oct 12 20:10:51 2011 +0200 |
tree | aa9923e821b0171ac71d11f9e8414fc594fcb61c | |
parent | 5d6fbe82078fe67437755bccfa504dbbcf909a74 [diff] [blame] |
Replace mentions of IOError
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index 15b55e8..54131f5 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst
@@ -69,7 +69,7 @@ try: with open("/tmp/counter") as infile: _count = int(infile.read()) - except IOError: + except FileNotFoundError: _count = 0 def incrcounter(n):