[Patches] [ python-Patches-475009 ] build_scripts.post_interp is None

noreply@sourceforge.net noreply@sourceforge.net
Thu, 25 Oct 2001 12:12:21 -0700


Patches item #475009, was opened at 2001-10-25 12:09
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=475009&group_id=5470

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: build_scripts.post_interp is None

Initial Comment:
in the first line regex, we assign group(1) to
post_interp, which is None. So you get
#!/usr/bin/pythonX.YNone
as output, which is wrong.

Heres da patch:
--- build_scripts.py.orig       Thu Oct 25 21:03:27 2001
+++ build_scripts.py    Thu Oct 25 21:03:41 2001
@@ -80,7 +80,7 @@
                 match = first_line_re.match(first_line)
                 if match:
                     adjust = 1
-                    post_interp = match.group(1)
+                    post_interp = match.group(1) or ""
 
             if adjust:
                 self.announce("copying and adjusting
%s -> %s" %


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=475009&group_id=5470