[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_scripts.py,1.13,1.14

Andrew Kuchling akuchlin@mems-exchange.org
Tue, 11 Dec 2001 15:50:36 -0500


On Tue, Dec 11, 2001 at 12:44:44PM -0800, M.-A. Lemburg wrote:
>*** build_scripts.py	2001/12/10 16:15:44	1.13
>--- build_scripts.py	2001/12/11 20:44:42	1.14
>***************
>*** 81,85 ****
>                  if match:
>                      adjust = 1
>!                     post_interp = match.group(1)
>  
>              if adjust:
>--- 81,85 ----
>                  if match:
>                      adjust = 1
>!                     post_interp = match.group(1) or ''

Careful; a similar fix was suggested for bug #475009, but the correct
fix was to tighten up the regex pattern for the first line. 

--amk