Skip to content

Commit

Permalink
adapt append_scicat_dataset for the appendentry mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan committed May 22, 2024
1 parent a068623 commit 61b2059
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-05-22 Jan Kotanski <jankotan@gmail.com>
* adapt the entry name in the appendentry mode to NXS_FileRecorder v3.21.0 (#637)
* tagged as v4.1.0

2024-05-15 Jan Kotanski <jankotan@gmail.com>
* reduce number of plots in h5redis writer (#635)
* tagged as v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion nxstools/pyeval/scdataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def append_scicat_dataset(macro, status_info=True, reingest=False):
if not nexus or appendentry is False:
sname = "%s_%05i" % (scanname, sid)
else:
sname = "%s::/%s%i;%s_%05i" % (
sname = "%s::/%s_%05i;%s_%05i" % (
scanname, entryname, sid, scanname, sid)
if reingest:
sname = "%s:%s" % (sname, time.time())
Expand Down
2 changes: 1 addition & 1 deletion nxstools/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
""" NXS tools release version"""

#: (:obj:`str`) package version
__version__ = "4.0.2"
__version__ = "4.1.0"

0 comments on commit 61b2059

Please sign in to comment.