On Tuesday, February 5, 2019 at 8:23:21 PM UTC-5, Thomas Keffer wrote:
>
> So, why did cmon work before? 
>

in my installations i specify paths in weewx.conf.  so i never tested this 
configuration.

here is the fix.  in genplot.py, change this:

    @staticmethod

    def normalize_path(skin_dir, path):

        if os.path.isabs(path):

            return path
        return os.path.join(skin_dir, path) 

to this:

    @staticmethod

    def normalize_path(skin_dir, path):

        if path is None or os.path.isabs(path):

            return path

        return os.path.join(skin_dir, path)

m

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to