Miksus / rocketry

Modern scheduling library for Python
https://rocketry.readthedocs.io
MIT License
3.26k stars 105 forks source link

Logging docs have a typo #66

Closed sijaira closed 2 years ago

sijaira commented 2 years ago

Is it corrected in the latest version (master branch)? no

Latest version of the docs: https://rocketry.readthedocs.io/en/latest/

Location in the documentation you wish to improve https://rocketry.readthedocs.io/en/latest/handbooks/logging.html#

Describe the problem

The line below causes an error:

logging.addHander(handler)

Suggestion for the fix

It should be:

logger.addHandler(handler)

Miksus commented 2 years ago

Oh, true. Thanks for spotting!

I'll fix this in the upcoming days (unless anyone else wants).

Miksus commented 2 years ago

Fixed in #72