diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-20 23:29:28 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-20 23:29:28 +0100 |
commit | bef686affb94691d130ce1bf61d55e7c030fc7bd (patch) | |
tree | 2cd54241e30139add267497acfb744c817b5ce9d /source | |
parent | Minor update in the doc (diff) | |
download | newspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.tar.gz newspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.tar.bz2 newspipe-bef686affb94691d130ce1bf61d55e7c030fc7bd.zip |
Typo.
Diffstat (limited to 'source')
-rwxr-xr-x | source/utils.py | 2 |
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]*)?"), \ |