summaryrefslogtreecommitdiff
path: root/src/runtime/python/examples
diff options
context:
space:
mode:
authorprasanth.kolachina <prasanth.kolachina@cse.gu.se>2015-04-22 18:51:55 +0000
committerprasanth.kolachina <prasanth.kolachina@cse.gu.se>2015-04-22 18:51:55 +0000
commit7d876fd665857e6e416ec1dafe3580542ae9ff59 (patch)
tree37a0fc17b0c4d9906ef6c01eb009d2feec4044ca /src/runtime/python/examples
parent12216449e09a7c7699f0ea5be0cd26e1f69c9ce3 (diff)
No debug messages
Diffstat (limited to 'src/runtime/python/examples')
-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: