# HG changeset patch # User Ludovic Chabant # Date 1497737678 25200 # Node ID 803c5c28a71f89f6d03ce8a8ee3420e143f75242 # Parent acd9c3e8533fdb85f1994e341f939f7fc1fee04a showrecord: Fix bug when filtering output paths. diff -r acd9c3e8533f -r 803c5c28a71f piecrust/commands/builtin/baking.py --- a/piecrust/commands/builtin/baking.py Sat Jun 17 09:14:36 2017 -0700 +++ b/piecrust/commands/builtin/baking.py Sat Jun 17 15:14:38 2017 -0700 @@ -182,7 +182,7 @@ out_pattern = None if ctx.args.out_path: - out_pattern = '*%s*' % ctx.args.out.strip('*') + out_pattern = '*%s*' % ctx.args.out_path.strip('*') pipelines = ctx.args.pipelines if not pipelines: