Skip to content

Commit

Permalink
Issue 604: append only techniques with pid (#605)
Browse files Browse the repository at this point in the history
* append only techniques with pid

* add techniques only with the pid
  • Loading branch information
jkotan authored Feb 9, 2024
1 parent 197851f commit 1bbdcb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-02-09 Jan Kotanski <jankotan@gmail.com>
* add techniques only with the pid (#605)
* tagged as v3.63.1

2024-02-08 Jan Kotanski <jankotan@gmail.com>
* add first, last, firstlast, endpoints type in group-map (#602)
* tagged as v3.63.0
Expand Down
4 changes: 2 additions & 2 deletions nxstools/nxsfileinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,8 +1066,8 @@ def generate_techniques(self, techniques, techniques_pids=None):
name = id_techniques[pid]
if pid:
result.append({"pid": pid, "name": name})
else:
result.append({"name": name})
elif name:
result.append({"pid": name, "name": name})
# print(result)
return result

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__ = "3.63.0"
__version__ = "3.63.1"

0 comments on commit 1bbdcb4

Please sign in to comment.