fixing findString()

This commit is contained in:
Rolux 2008-04-29 14:56:47 +02:00
parent a8d0d8ac8b
commit d5d58dba34

View file

@ -5,7 +5,6 @@ import re
def findRegexp(string, regexp):
print string, regexp
return re.compile(regexp, re.DOTALL).findall(string)
def findString(string, string0, string1 = ''):