diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-29 18:16:52 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-29 18:16:52 -0700 |
commit | ae15583248dc5062fccc1420589c344ee482e350 (patch) | |
tree | 2430b9c34baa8d1515a949840986bc2620d0a429 /python/fatcat_tools | |
parent | e4eabbf46ff5fa0982ee5acbfc04400c7836c29a (diff) | |
download | fatcat-ae15583248dc5062fccc1420589c344ee482e350.tar.gz fatcat-ae15583248dc5062fccc1420589c344ee482e350.zip |
remove stray JALC debug code
Diffstat (limited to 'python/fatcat_tools')
-rw-r--r-- | python/fatcat_tools/importers/jalc.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/jalc.py b/python/fatcat_tools/importers/jalc.py index 914f2884..847a68e2 100644 --- a/python/fatcat_tools/importers/jalc.py +++ b/python/fatcat_tools/importers/jalc.py @@ -64,8 +64,9 @@ def parse_jalc_persons(raw_persons): # all english names, or all japanese names return persons - if len([1 for p in persons if p._lang == 'en']) != len([1 for p in persons if p._lang == 'ja']): - print("INTERESTING: {}".format(persons[0])) + # for debugging + #if len([1 for p in persons if p._lang == 'en']) != len([1 for p in persons if p._lang == 'ja']): + # print("INTERESTING: {}".format(persons[0])) start_lang = persons[0]._lang contribs = [] |