Page 1 of 1

Error in 1.0.38

PostPosted: Wed Jan 22, 2020 2:02 pm
by resnick
I get the following in the log:

Code: Select all
   Starting plugin "Z-Wave Scene Controller 1.0.38" (pid 5474)
   Started plugin "Z-Wave Scene Controller 1.0.38"
   Z-Wave                          received "Kitchen Controller" scene 1 (0001)
   Z-Wave Scene Controller Error   Error in plugin execution ReceivedBroadcast:

Traceback (most recent call last):
  File "plugin.py", line 181, in zwaveCommandReceived
AttributeError: 'Plugin' object has no attribute 'Version'

   Z-Wave                          received "Kitchen Controller" scene 1 (0001)
   Z-Wave Scene Controller Error   Error in plugin execution ReceivedBroadcast:

Traceback (most recent call last):
  File "plugin.py", line 181, in zwaveCommandReceived
AttributeError: 'Plugin' object has no attribute 'Version'


Any thoughts?

Re: Error in 1.0.38

PostPosted: Wed Jan 22, 2020 4:44 pm
by howartp
That was in 1.0.37 and fixed in 1.0.38 unless I’ve missed a line?

Sent from my iPhone using Tapatalk Pro

Re: Error in 1.0.38

PostPosted: Wed Jan 22, 2020 5:11 pm
by howartp
Something is wrong there - line 181 in v1.0.38 says:

Code: Select all
self.debugLog(u"Version: %s" % self.version)

The error you're seeing is from 1.0.37 which says:

Code: Select all
self.debugLog(u"Version: %s" % self.Version)

Note the capital V in Version, in 1.0.37, which is why it throws that error.

Can you reinstall the plugin?