[Zope-dev] Type in Aqueduct.py

Brian Lenihan brianl@real.com
Wed, 21 Jul 1999 12:18:41 -0700


I came across a typo in line 366 of Aqueduct.py:

--- Aqueduct.py	Wed Jul 21 10:37:23 1999
+++ Aqueduct.py.orig	Fri Jul 16 17:29:07 1999
@@ -366,7 +366,7 @@
  		l=len(grps[0])
  	else:
  	    ts_results = unparmre.match_group(text, (1,2))
-	    if ts_reults:
+	    if ts_results:
  		start, grps = ts_results
  		name=grps[1]
  		l=len(grps[0])

It is still in the frozen public cvs.

I didn't notice it until I tried to add a new SQL method. It took some
head scratching to figure out my SQL method was actually OK.
I finally tried editing an existing method and got the same error.