Commit 6cc9f68aa64c8fd0b1b3ccd41824096c5162a60a

Authored by Miguel Barão
1 parent 6926ae9f
Exists in master and in 1 other branch dev

- minor change

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
questions.py
... ... @@ -277,7 +277,7 @@ class QuestionNumericInterval(Question):
277 277 # answer = locale.atof(self['answer'])
278 278  
279 279 except ValueError:
280   - self['comments'] = '\n'.join(['A resposta não é numérica.', self['comments']])
  280 + self['comments'] = '\n\n'.join(['A resposta dada não é numérica.', self['comments']])
281 281 self['grade'] = 0.0
282 282 else:
283 283 self['grade'] = 1.0 if lower <= answer <= upper else 0.0
... ...