-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error on weewx v4.0 #9
Comments
Thanks so much! |
With Buster / weewx python3 it stopped working. Getting following errors (attached). |
The syntax except clause has changed in python3. |
Thanks! |
@Orbit4l @matthewwall - I'm also having same problem with Buster and weewx 4.0 and 3.6 |
Syslog attached for Weewx 4.1 with Buster Debian on a Pi Series1 (2xUSB) - no Weather Station feed observed. |
Weewx version 4.0 was refactored and the log_trackback method was moved from the weeutil module to log module.
Line 255: from weeutil.weeutil import timestamp_to_string, log_traceback
causes an fatal error and weewx daemon closes.
should be:
from weeutil.weeutil import timestamp_to_string
from weeutil.log import log_traceback
instead of:
from weeutil.weeutil import timestamp_to_string, log_traceback
The text was updated successfully, but these errors were encountered: