Skip to content

Commit 246cc20

Browse files
committed
updations
Signed-off-by: ankit2001 <ankitchoudhary202.ac@gmail.com>
1 parent 89e30c7 commit 246cc20

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/deltacode/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ def write_json(deltacode, outfile, all_delta_types=False):
5757
outfile.write('\n')
5858
# Output delta_stats at cli
5959
status=deltacode.stats.to_dict()
60-
click.echo("\nDelta stats .....\n")
60+
click.echo("\nDelta stats :\n")
6161
for stat, value in status.iteritems():
62-
click.echo(str(stat) + " : " + str(value))
62+
click.echo("{} : {}".format(stat,value))
63+
#click.echo("\n")
6364

6465

6566
def print_version(ctx, param, value):

0 commit comments

Comments
 (0)