[Distutils] patch for bdist_dumb

Harry Henry Gebel hgebel@inet.net
Tue, 25 Apr 2000 09:23:38 -0400


--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Here is a patch to bdist_dumb to keep it from raising a NameErrer when it
tries to raise a DistutilsPlatformError .

-- 
Harry Henry Gebel, Senior Developer, Landon House SBS
West Dover Hundred, Delaware

"Why do you look for the living among the dead?
He is not here, but has risen." 
Luke 24:5 (NRSV)

--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="exeception_error.patch"

Index: distutils/command/bdist_dumb.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/command/bdist_dumb.py,v
retrieving revision 1.3
diff -u -r1.3 bdist_dumb.py
--- bdist_dumb.py	2000/04/22 02:51:25	1.3
+++ bdist_dumb.py	2000/04/25 13:19:42
@@ -11,6 +11,7 @@
 import os
 from distutils.core import Command
 from distutils.util import get_platform, create_tree, remove_tree
+from distutils.errors import *
 
 
 class bdist_dumb (Command):

--C7zPtVaVf+AK4Oqc--