Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gitwalker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ def main():
log("[%s] %s", cmd.name, pprint.pformat(rec["results"][cmd.name]))
out[sha1] = rec

log("Writing output file: %s", opts.out_path)
json.dump(out, open(opts.out_path, "w"), indent=1)
log("Writing output file: %s", out_path)
json.dump(out, open(out_path, "w"), indent=1)
finally:
log("Tidying temp dir: %s", git_new)
shutil.rmtree(git_new)
Expand Down