Skip to content

Commit

Permalink
fix pilc file name (#664)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan authored Jul 2, 2024
1 parent caf91ea commit fc18eb1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-07-02 Jan Kotanski <jankotan@gmail.com>
* fix pilc file name (#663)
* tagged as v4.6.1

2024-07-02 Jan Kotanski <jankotan@gmail.com>
* add pilc component template (#661)
* tagged as v4.6.0
Expand Down
6 changes: 3 additions & 3 deletions nxstools/pyeval/pilc.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,17 @@ def triggermode_cb(commonblock, name, triggermode,
if spf > 0 and cfid > 0:
if cfid == nbf:
nxw.link(
"%s_%05i%s://entry/data/%s"
"%s%05i%s://entry/data/%s"
% (path, nbf, filepostfix, field),
pilcdata, field)
nxw.link("/%s/%s/%s/data/%s"
% (entryname, insname, name, field),
dt, "%s_%s" % (name, field))
nxw.link("%s_%05i%s://entry/data/%s"
nxw.link("%s%05i%s://entry/data/%s"
% (path, nbf, filepostfix, field),
pilcdata, "%s" % (fnbf))
else:
nxw.link("%s_%05i%s://entry/data/%s"
nxw.link("%s%05i%s://entry/data/%s"
% (path, nbf, filepostfix, field),
pilcdata, "%s" % (fnbf))
nxw.link("/%s/%s/%s/data/%s" %
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.6.0"
__version__ = "4.6.1"

0 comments on commit fc18eb1

Please sign in to comment.