Mercurial > piecrust2
changeset 883:803c5c28a71f
showrecord: Fix bug when filtering output paths.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 17 Jun 2017 15:14:38 -0700 |
parents | acd9c3e8533f |
children | 18b3e2acd069 |
files | piecrust/commands/builtin/baking.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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: