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 = ''):