Skip to content

Commit

Permalink
Merge 0615da8 into 648661e
Browse files Browse the repository at this point in the history
  • Loading branch information
bramstroker committed Jun 17, 2023
2 parents 648661e + 0615da8 commit c05c59a
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 121 deletions.
2 changes: 1 addition & 1 deletion utils/measure/Dockerfile
Expand Up @@ -3,7 +3,7 @@
# The builder image, used to build the virtual environment
FROM python:3.11-buster as builder

RUN pip install poetry==1.4.2
RUN pip install poetry==1.5.1

ENV POETRY_NO_INTERACTION=1 \
POETRY_VIRTUALENVS_IN_PROJECT=1 \
Expand Down
2 changes: 1 addition & 1 deletion utils/measure/measure.py
Expand Up @@ -297,7 +297,7 @@ def main() -> None:

measure.start()
exit(0)
except (PowerMeterError, LightControllerError) as e:
except (PowerMeterError, LightControllerError, KeyboardInterrupt) as e:
_LOGGER.error(f"Aborting: {e}")
exit(1)

Expand Down

0 comments on commit c05c59a

Please sign in to comment.