Commit fd4db973522378b15e6b85bddb807dc644e58a4d

Authored by Erickson Silva
2 parents 24f6169b 93c61331
Exists in master

Merge branch 'devel'

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
src/PortGlosa.py
... ... @@ -79,4 +79,4 @@ def ajuda():
79 79 if __name__ == '__main__':
80 80 texto = sys.argv[1]
81 81 glosa = traduzir(texto)
82   - sys.exit(glosa)
83 82 \ No newline at end of file
  83 + print glosa
84 84 \ No newline at end of file
... ...
src/TraduzSentencas.py
... ... @@ -29,7 +29,7 @@ class TraduzSentencas(object):
29 29 try:
30 30 analise_sintatica = alexp.run(sentenca)
31 31 except Exception as ex:
32   - self.salvar_log(str(traceback.format_exc()))
  32 + #self.salvar_log(str(traceback.format_exc()))
33 33 analise_sintatica = None
34 34  
35 35 analise_morfologica = alexp.getAnaliseMorfologica()
... ... @@ -55,4 +55,4 @@ class TraduzSentencas(object):
55 55 '''Salva traceback de uma excessão do analisador sintático
56 56 '''
57 57 logging.error(erro)
58   -
59 58 \ No newline at end of file
  59 +
... ...