summaryrefslogtreecommitdiff
path: root/debian/patches/bdist-wininst-notfound.diff
blob: a716bf37a6f3bd8019a968245b67bc6c5c454cde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# DP: suggest installation of the pythonX.Y-dev package, if bdist_wininst
# DP: cannot find the wininst-* files.

Index: b/Lib/distutils/command/bdist_wininst.py
===================================================================
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -359,6 +359,10 @@ class bdist_wininst(Command):
         filename = os.path.join(directory, "wininst-%s%s.exe" % (bv, sfix))
         f = open(filename, "rb")
         try:
+            f = open(filename, "rb")
+        except IOError as e:
+            raise DistutilsFileError(str(e) + ', %s not included in the Debian packages.' % filename)
+        try:
             return f.read()
         finally:
             f.close()