Skip to content

Commit 2a75aac

Browse files
committed
fix typos, cleanup
1 parent e7ea099 commit 2a75aac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ as Windows filesystem won't handle the permissions correctly (sets +x on everyth
2020
* do the Python Wheel build: install the build helper via `pip install build` and do a `python -m build`
2121
* install all dependencies `sudo apt-get install build-essential debhelper devscripts equivs dh-virtualenv`
2222
* cd into the source root folder (the one that includes the debian directory)
23+
* make changes to the debian/changelog file and increase the version number if necessary
2324
* run `dpkg-buildpackage -us -uc -b` In case you are running into problems with virtualenv, try a `sudo pip install virtualenv` first
2425

2526
## Deployment

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
te-modbus-plugin (0.2.0) UNRELEASED; urgency=medium
22

3-
* Adding read capabilities to Register Measurements values: signed values,
3+
* Added read capabilities to register Measurements values: signed values,
44
float, etc.
5-
* basic Alarm handling for coils
5+
* Added Basic Alarm handling for coils
66

77
-- Mario Heidenreich <mario.heidenreich@softwareag.com> Wed, 02 Nov 2022 19:51:08 +0100
88

modbus_reader/reader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ def polldevice(self, device):
142142
continue
143143
msgs = mapper.mapcoil(result, coildefinition)
144144
for msg in msgs:
145-
self.logger.debug(f'sending message {msg.data}')
146145
self.send_tedge_message(msg)
147146
except ConnectionException as e:
148147
self.logger.error(f'Failed to connect to device: {device["name"]}')

0 commit comments

Comments
 (0)