Added some more comments and debug output

This commit is contained in:
Veronica K. B. Olsen
2019-11-15 23:00:12 +01:00
parent ed0c4c6e49
commit e0fff7673d
3 changed files with 10 additions and 1 deletions
+4
View File
@@ -13,6 +13,8 @@
import logging
import nw
from os import path
from nw.constants import isoLanguage
logger = logging.getLogger(__name__)
@@ -75,6 +77,8 @@ class NWSpellCheck():
self.PROJW = []
if projectDict is not None:
self.projectDict = projectDict
if not path.isfile(projectDict):
return
try:
with open(projectDict,mode="r",encoding="utf-8") as wordsFile:
for theLine in wordsFile: