bb4242 / sdnotify

A pure Python implementation of systemd's service notification protocol (sd_notify)
MIT License
114 stars 19 forks source link

don't use bare except: #6

Closed dlech closed 2 years ago

dlech commented 2 years ago

Catching all exceptions is usually not desired. For example, this could ignore KeyboardInterrupt or SystemExit.

bb4242 commented 2 years ago

Thanks!