# HG changeset patch # User Ludovic Chabant # Date 1421046225 28800 # Node ID c2acf5f3193651a5a48ff8e82a630cee978f143b # Parent 4c0ab0b044fe1a959db9cfa528c96e04ce1644d9 showrecord: Show relative paths. diff -r 4c0ab0b044fe -r c2acf5f31936 piecrust/commands/builtin/baking.py --- a/piecrust/commands/builtin/baking.py Sun Jan 11 23:03:12 2015 -0800 +++ b/piecrust/commands/builtin/baking.py Sun Jan 11 23:03:45 2015 -0800 @@ -139,7 +139,8 @@ entry.taxonomy_term)) logging.info(" config: %s" % entry.config) logging.info(" out URLs: %s" % entry.out_uris) - logging.info(" out paths: %s" % entry.out_paths) + logging.info(" out paths: %s" % [os.path.relpath(p, out_dir) + for p in entry.out_paths]) logging.info(" used srcs: %s" % entry.used_source_names) if entry.errors: logging.error(" errors: %s" % entry.errors)