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
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Bug fixes in 0.5.0

- Fixed a bug where using ``labgrid-client io get`` always returned ``low``
when reading a ``sysfsgpio``.
- Fix labgrid-client exit code on keyboard interrupt.

Breaking changes in 0.5.0
~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion labgrid/remote/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1904,7 +1904,7 @@ def main():
print(f"{parser.prog}: error: {e}", file=sys.stderr)
exitcode = 1
except KeyboardInterrupt:
exitcode = 0
exitcode = 1
except Exception: # pylint: disable=broad-except
traceback.print_exc()
exitcode = 2
Expand Down