Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]

[project]
name = "smahub"
version = "1.7.6"
version = "1.7.7"
authors = [{ name = "Daniel Krippner", email = "dk.mailbox@gmx.net" }]
description = "Little daemon that runs plugins for collecting data from SMA PV products, and publishes to eg MQTT via other plugins."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/smahub.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ async def main(args):
logging.getLogger().setLevel(logging.DEBUG)
logging.debug('Verbose output enabled')

if args.debug:
if args.debug == 'true':
# Allow other computers to attach to debugpy at this IP address and port.
debugpy.listen(('0.0.0.0', args.debug_port))
logging.info(f"Listening on debug port: {args.debug_port}")
Expand Down
Loading