From 52709a3e2529978f7b19c06a128ffac4258959e2 Mon Sep 17 00:00:00 2001 From: Diaoul Date: Thu, 23 Jul 2015 00:35:05 +0200 Subject: [PATCH] Remove useless dash in cli message --- subliminal/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subliminal/cli.py b/subliminal/cli.py index 38146cdba..fb275a294 100644 --- a/subliminal/cli.py +++ b/subliminal/cli.py @@ -310,7 +310,7 @@ def download(obj, provider, language, age, directory, encoding, single, force, h scaled_score *= 100 / v.scores['hash'] # echo some nice colored output - click.echo(' - [{score}] - {language} subtitle from {provider_name} (match on {matches})'.format( + click.echo(' - [{score}] {language} subtitle from {provider_name} (match on {matches})'.format( score=click.style('{:5.1f}'.format(scaled_score), fg=score_color, bold=score >= v.scores['hash']), language=s.language.name if s.language.country is None else '%s (%s)' % (s.language.name, s.language.country.name),