diff --git a/rsshub/spiders/word/word.py b/rsshub/spiders/word/word.py index af7bc70..bd1c72c 100644 --- a/rsshub/spiders/word/word.py +++ b/rsshub/spiders/word/word.py @@ -6,10 +6,10 @@ from os import path file_path = path.dirname(path.realpath(__file__)) def ctx(): - file = path.join(file_path,'toeflwords.txt') + file = path.join(file_path,'ieltswords.txt') with open(file, encoding='utf-8') as inf: f = inf.readlines() count = len(f) wordnum = random.randrange(0, count, 1) word = linecache.getline(file, wordnum) - return {"word": word} \ No newline at end of file + return {"word": word}