Issue #16719: Get rid of WindowsError. Use OSError instead

Patch by Serhiy Storchaka.
diff --git a/PC/VS8.0/build_ssl.py b/PC/VS8.0/build_ssl.py
index dc13ef5..bc6eba4 100644
--- a/PC/VS8.0/build_ssl.py
+++ b/PC/VS8.0/build_ssl.py
@@ -71,7 +71,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)