Skip to content

Commit

Permalink
fix typo in nexus_path setter (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan authored Feb 13, 2025
1 parent b5e41aa commit edd0b39
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-02-13 Jan Kotanski <[email protected]>
* fix typo in nexus_path setter (#103)
* tagged as 3.20.3

2024-07-02 Jan Kotanski <[email protected]>
* fix dictionary changed size during iteration error (#98)
* tagged as 3.20.2
Expand Down
2 changes: 1 addition & 1 deletion nxsselector/Views.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def pchecked(self, row):
prs["link"] = dform.link
prs["canfail"] = dform.canfail
prs["shape"] = dform.shape
prs["nexus_path"] = dform.shape or None
prs["nexus_path"] = dform.path or None
for nm, val in dform.variables.items():
prs[nm] = val
self.model.setData(ind5, (
Expand Down
2 changes: 1 addition & 1 deletion nxsselector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
"""

#: (:obj:`str`) version of the application
__version__ = "3.20.2"
__version__ = "3.20.3"

0 comments on commit edd0b39

Please sign in to comment.