We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed03b60 + a256008 commit 54c30acCopy full SHA for 54c30ac
mig/shared/output.py
@@ -2820,10 +2820,11 @@ def format_output(
2820
2821
# hide previous output
2822
2823
- out_obj = []
2824
- out_obj.extend([{'object_type': 'error_text', 'text':
2825
- 'Validation error! %s' % val_msg},
2826
- {'object_type': 'title', 'text': 'Validation error!'}])
+ out_obj = [
+ {'object_type': 'start'},
+ {'object_type': 'title', 'text': 'Validation error!'},
+ {'object_type': 'error_text', 'text': 'Validation error! %s' % val_msg},
2827
+ ]
2828
2829
start = None
2830
title = None
0 commit comments