diff options
Diffstat (limited to 'Lib/netrc.py')
| -rw-r--r-- | Lib/netrc.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/netrc.py b/Lib/netrc.py index c96db6f96a..7fe69ee458 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -25,7 +25,7 @@ class netrc:              try:                  file = os.path.join(os.environ['HOME'], ".netrc")              except KeyError: -                raise IOError("Could not find .netrc: $HOME is not set") +                raise OSError("Could not find .netrc: $HOME is not set")          self.hosts = {}          self.macros = {}          with open(file) as fp:  | 
