diff options
author | Brett Cannon <brett@python.org> | 2013-06-13 20:57:26 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-13 20:57:26 -0400 |
commit | dfd87ef593fcae1f252092348479d456375552fc (patch) | |
tree | 9b2837665fa5a4027ac58d40eb6675d4249a4a4d /Lib/smtpd.py | |
parent | 87407f5d891b20af9b7ef9ae0cb728210784581f (diff) | |
download | cpython-dfd87ef593fcae1f252092348479d456375552fc.tar.gz |
Issue #18200: Update the stdlib (except tests) to use
ModuleNotFoundError.
Diffstat (limited to 'Lib/smtpd.py')
-rwxr-xr-x | Lib/smtpd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtpd.py b/Lib/smtpd.py index f28036a5b4..457cef64e0 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -846,7 +846,7 @@ if __name__ == '__main__': if options.setuid: try: import pwd - except ImportError: + except ModuleNotFoundError: print('Cannot import module "pwd"; try running with -n option.', file=sys.stderr) sys.exit(1) nobody = pwd.getpwnam('nobody')[2] |