commit | 2606a6f197a49f04611cb5cb0d67404d1ab14481 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 19 14:33:35 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 19 14:33:35 2012 +0200 |
tree | 35c228625105050ec2f593e6b362ce9e2498c760 | |
parent | 8a045cb93bded97220422a957941bb68341429d1 [diff] [blame] |
Issue #16719: Get rid of WindowsError. Use OSError instead Patch by Serhiy Storchaka.
diff --git a/PC/VC6/build_ssl.py b/PC/VC6/build_ssl.py index 95af084..89554b8 100644 --- a/PC/VC6/build_ssl.py +++ b/PC/VC6/build_ssl.py
@@ -66,7 +66,7 @@ # note: do not abspath s; the build will fail if any # higher up directory name has spaces in it. fnames = os.listdir(s) - except os.error: + except OSError: fnames = [] for fname in fnames: fqn = os.path.join(s, fname)