Commit afffd789 authored by Shane Hathaway's avatar Shane Hathaway

"re" bugfix

parent 82841082
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
__doc__='''Shared classes and functions __doc__='''Shared classes and functions
$Id: Aqueduct.py,v 1.48 2001/05/01 20:09:00 andreas Exp $''' $Id: Aqueduct.py,v 1.49 2001/05/16 15:13:00 shane Exp $'''
__version__='$Revision: 1.48 $'[11:-2] __version__='$Revision: 1.49 $'[11:-2]
import Globals, os import Globals, os
from Globals import Persistent from Globals import Persistent
...@@ -370,7 +370,7 @@ def parse(text, ...@@ -370,7 +370,7 @@ def parse(text,
l=len(mo.group(2)) l=len(mo.group(2))
else: else:
mo = unparmre.match(text) mo = unparmre.match(text)
if ts_results: if mo:
name=mo.group(2) name=mo.group(2)
l=len(mo.group(1)) l=len(mo.group(1))
value={} value={}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment