Skip to content

Commit 49e5371

Browse files
committed
[!163][SUBTITLING] Fix help print in subtitle compliance script
# Why is the change needed? The help command for the subtitle compliance script does not work. # What changes does the patch introduce? Escapes the characters so that the help properly works. # How was this patch tested? manual run
1 parent a0ed786 commit 49e5371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/speech_to_text/scripts/subtitle_compliance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def main(args):
290290
help='floating point width.')
291291
parser.add_argument(
292292
'--confidence-intervals', '-ci', default=False, action='store_true',
293-
help='confidence intervals with 95% confidence level using bootstrap resampling '
293+
help='confidence intervals with 95%% confidence level using bootstrap resampling '
294294
f'({_BOOTSTRAP_NUM_SAMPLES} samples). The number of samples can be customized by '
295295
'setting the environment variable BOOTSTRAP_NUM_SAMPLES.')
296296
parser.add_argument(

0 commit comments

Comments
 (0)