From e31ecf0783c07a90cca416aebccc84f6ae9c0914 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 7 Sep 2010 00:42:46 +0900 Subject: [PATCH] Removed entry limiter. Importer now seems to work from beginning to end. --- jblite/jmdict_proto2.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/jblite/jmdict_proto2.py b/jblite/jmdict_proto2.py index 8780da4..7d9aba2 100644 --- a/jblite/jmdict_proto2.py +++ b/jblite/jmdict_proto2.py @@ -132,8 +132,6 @@ class Database(object): # Iterate through each entry #print("========================================") for i, entry in enumerate(etree.findall("entry")): - if i >= 10000: - break # entry table ent_seq = entry.find("ent_seq") -- 2.11.4.GIT