From: imarom Date: Tue, 31 Jan 2017 08:56:09 +0000 (+0200) Subject: identation fix X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=bf3b055a278d62596c3a708e05fb4708ac715d5a;p=trex.git identation fix Signed-off-by: imarom --- diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_opts.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_opts.py index 477d81a6..4c9079ba 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_opts.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/text_opts.py @@ -134,9 +134,9 @@ def underline(text): # apply attribute on each non-empty line def text_attribute(text, attribute): return '\n'.join(['{start}{txt}{end}'.format( - start = TEXT_CODES[attribute]['start'], - txt = line, - end = TEXT_CODES[attribute]['end']) + start = TEXT_CODES[attribute]['start'], + txt = line, + end = TEXT_CODES[attribute]['end']) if line else '' for line in ('%s' % text).split('\n')])