aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-20 23:29:28 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-20 23:29:28 +0100
commitbef686affb94691d130ce1bf61d55e7c030fc7bd (patch)
tree2cd54241e30139add267497acfb744c817b5ce9d /source
parentMinor update in the doc (diff)
downloadnewspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.tar.gz
newspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.tar.bz2
newspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.zip
Typo.
Diffstat (limited to 'source')
-rwxr-xr-xsource/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils.py b/source/utils.py
index b1392b0e..d9b21169 100755
--- a/source/utils.py
+++ b/source/utils.py
@@ -56,7 +56,7 @@ from collections import Counter
import conf
-# regular expression to chech URL
+# regular expression to check URL
url_finders = [ \
re.compile("([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}|(((news|telnet|nttp|file|http|ftp|https)://)|(www|ftp)[-A-Za-z0-9]*\\.)[-A-Za-z0-9\\.]+)(:[0-9]*)?/[-A-Za-z0-9_\\$\\.\\+\\!\\*\\(\\),;:@&=\\?/~\\#\\%]*[^]'\\.}>\\),\\\"]"), \
re.compile("([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}|(((news|telnet|nttp|file|http|ftp|https)://)|(www|ftp)[-A-Za-z0-9]*\\.)[-A-Za-z0-9\\.]+)(:[0-9]*)?"), \
bgstack15