# HG changeset patch # User Dennis Fink # Date 2015-10-26 22:52:04 # Node ID 60636de1c5f5dafe5a171b01fb9e1b86fc19fec1 # Parent 9f0c38d326dcde74385fc1ad4bd3a66a114748f7 Fix total message in countries subcommand diff --git a/ennstatus/cli/commands/stats.py b/ennstatus/cli/commands/stats.py --- a/ennstatus/cli/commands/stats.py +++ b/ennstatus/cli/commands/stats.py @@ -120,12 +120,12 @@ def countries(obj, by_type): ) ) - click.echo( - 'We are hosted in %s different countries' % click.style( - str(len(countries.keys())), - fg='blue' - ) + click.echo( + 'We are hosted in %s different countries' % click.style( + str(len(countries.keys())), + fg='blue' ) + ) else: type_countries = { 'exit': defaultdict(int),