Skip to content

Commit

Permalink
Debug conditional addition of watermark (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jun 6, 2024
1 parent d785219 commit 35202bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Upcoming

## v0.4.10 (June 6, 2024)

### Bug fixes
* Fixed bug causing overwrite of NWB GUIDE watermark. [PR #890](https://github.com/catalystneuro/neuroconv/pull/890)



## v0.4.9 (June 5, 2024)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def make_nwbfile_from_metadata(metadata: dict) -> NWBFile:
nwbfile_kwargs["session_description"] = "No description."
if "identifier" not in nwbfile_kwargs:
nwbfile_kwargs["identifier"] = str(uuid.uuid4())
if "source_scipt" not in nwbfile_kwargs:
if "source_script" not in nwbfile_kwargs:
neuroconv_version = importlib.metadata.version("neuroconv")
nwbfile_kwargs["source_script"] = f"Created using NeuroConv v{neuroconv_version}"
nwbfile_kwargs["source_script_file_name"] = __file__ # Required for validation
Expand Down

0 comments on commit 35202bd

Please sign in to comment.