Skip to content

Commit

Permalink
Fix replay without explicit replay file (#37)
Browse files Browse the repository at this point in the history
* Fix replay without explicit replay file

* changelog
  • Loading branch information
davisagli authored Aug 26, 2024
1 parent 8670bf6 commit 178ec0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

### Bug fixes:

- Fix issue with Welcome Screen display [@ericof]
- Fix issue with Welcome Screen display [@ericof]

## 0.7.0 (2024-05-27)

Expand Down
2 changes: 1 addition & 1 deletion cookieplone/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def cli(
if replay_file and replay_file.exists():
# Use replay_file
replay = replay_file
else:
elif not replay:
# Annotate extra_context
extra_context = parse_extra_content(extra_context)
extra_context["__generator_signature"] = internal.signature_md(repo_path)
Expand Down
1 change: 1 addition & 0 deletions news/37.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix error with `--replay`. @davisagli

0 comments on commit 178ec0d

Please sign in to comment.