Removed debug print lines from URL normalizer

This commit is contained in:
melonhead 2010-07-14 16:48:18 -04:00
parent 61c42e7d8a
commit 93f626c482
1 changed files with 19 additions and 21 deletions

View File

@ -118,7 +118,5 @@ def normalize(url):
for norm in normalizers: for norm in normalizers:
m = norm.regex.match(normal_url) m = norm.regex.match(normal_url)
if m: if m:
print 'Normalized %s to %s' % (url, norm.normalize(m))
return norm.normalize(m) return norm.normalize(m)
print 'Normalized %s to %s' % (url, normal_url)
return normal_url return normal_url