# HG changeset patch # User Julien Cristau # Date 1395054920 -3600 # Node ID 68049d53426cc54dbab54699a01d1c0916fd4c8e # Parent c52441e4a3d719175ae6f1fa414bb99601ade9a6 [fti] properly close the ProgressBar Ensures cubicweb-ctl db-rebuild-fti ends its output with a newline. diff -r c52441e4a3d7 -r 68049d53426c server/checkintegrity.py --- a/server/checkintegrity.py Mon Mar 17 12:13:14 2014 +0100 +++ b/server/checkintegrity.py Mon Mar 17 12:15:20 2014 +0100 @@ -130,6 +130,8 @@ cnx.drop_entity_cache() if withpb: pb.update() + if withpb: + pb.finish() def check_schema(schema, cnx, eids, fix=1):