From d5d58dba347a9f3d9485eb13b84c623533c8fa11 Mon Sep 17 00:00:00 2001 From: Rolux Date: Tue, 29 Apr 2008 14:56:47 +0200 Subject: [PATCH] fixing findString() --- oxutils/text.py | 1 - 1 file changed, 1 deletion(-) diff --git a/oxutils/text.py b/oxutils/text.py index 450f6ee..8c54a3d 100644 --- a/oxutils/text.py +++ b/oxutils/text.py @@ -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 = ''):