File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Bug fixes in 0.5.0
1010
1111- Fixed a bug where using ``labgrid-client io get `` always returned ``low ``
1212 when reading a ``sysfsgpio ``.
13+ - Fix labgrid-client exit code on keyboard interrupt.
1314- Fixed ``labgrid-client forward --remote ``/``-R ``, which used either the LOCAL
1415 part of ``--local ``/``-L `` accidentally (if specified) or raised an
1516 UnboundLocalError.
Original file line number Diff line number Diff line change @@ -1904,7 +1904,7 @@ def main():
19041904 print (f"{ parser .prog } : error: { e } " , file = sys .stderr )
19051905 exitcode = 1
19061906 except KeyboardInterrupt :
1907- exitcode = 0
1907+ exitcode = 1
19081908 except Exception : # pylint: disable=broad-except
19091909 traceback .print_exc ()
19101910 exitcode = 2
You can’t perform that action at this time.
0 commit comments