summaryrefslogtreecommitdiff
path: root/po/fi/list-unkn-words.py
diff options
context:
space:
mode:
Diffstat (limited to 'po/fi/list-unkn-words.py')
-rwxr-xr-xpo/fi/list-unkn-words.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/po/fi/list-unkn-words.py b/po/fi/list-unkn-words.py
index a15ebeac4..f11cc5303 100755
--- a/po/fi/list-unkn-words.py
+++ b/po/fi/list-unkn-words.py
@@ -111,7 +111,11 @@ if __name__ == "__main__":
for word in pF.readlines():
if len(word) > 0: # Don't add empty words
if (word[0] != "#" and word[0] != " "): #Don't add comment lines
- checker.add_to_personal(word)
+ # Workaroud for Debian bug #545848
+ checker.dict.add(word)
+ # When bug is fixed, replace above line with
+ # checker.add(word)
+
pF.close()
unknWords={}