Skip to content

Commit

Permalink
fix typo in device_name for nxsetup (#706)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan authored Aug 8, 2024
1 parent f865189 commit dcbd826
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-08-08 Jan Kotanski <[email protected]>
* fix typo in for device_name in nxsetup (#706)
* tagged as v4.13.1

2024-07-19 Jan Kotanski <[email protected]>
* improve findAttribute by adding moduleAttributeMap (#696)
* add ScanNamesNoMetadata and ScanNamesNoGrouping variables (#702)
Expand Down
2 changes: 1 addition & 1 deletion nxstools/nxsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ def createServer(self, server_name, beamline, masterhost, hostname=None,
print("\ncreateServer: properties cannot be load")
properties = {}
if not properties:
properties = {self.__device_name: {}}
properties = {self.device_name: {}}

print("PROP", properties)
for dv, props in properties.items():
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.13.0"
__version__ = "4.13.1"

0 comments on commit dcbd826

Please sign in to comment.