aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/utils.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-17 22:04:14 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-17 22:04:14 +0100
commitbc83d429880d426151c877adac6fcd6ba12c36ac (patch)
tree9d0343b456d3030db9b3edd321e839dd7e0e1ff3 /pyaggr3g470r/utils.py
parentRestored tag cloud per feed. (diff)
downloadnewspipe-bc83d429880d426151c877adac6fcd6ba12c36ac.tar.gz
newspipe-bc83d429880d426151c877adac6fcd6ba12c36ac.tar.bz2
newspipe-bc83d429880d426151c877adac6fcd6ba12c36ac.zip
Added stop words files.
Diffstat (limited to 'pyaggr3g470r/utils.py')
-rwxr-xr-xpyaggr3g470r/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index 10db7639..398cfab3 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -123,7 +123,7 @@ def load_stop_words():
"""
Load the stop words and return them in a list.
"""
- stop_words_lists = glob.glob('./var/stop_words/*.txt')
+ stop_words_lists = glob.glob('./pyaggr3g470r/var/stop_words/*.txt')
stop_words = []
for stop_wods_list in stop_words_lists:
bgstack15