summaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/python/examples/translation_pipeline.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runtime/python/examples/translation_pipeline.py b/src/runtime/python/examples/translation_pipeline.py
index df21af212..a011a5366 100644
--- a/src/runtime/python/examples/translation_pipeline.py
+++ b/src/runtime/python/examples/translation_pipeline.py
@@ -99,8 +99,6 @@ def web_lexer(grammar, lang, sentences):
count = 0;
for analysis in grammar.languages[lang].lookupMorpho(lowertoken):
count += 1;
- if count:
- print "replacing %s with %s" %(token, lowertoken);
tokensList[idx] = lowertoken if count else token;
for idx, token in enumerate(tokensList):
if token.find('-') == -1: