Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lamoureux committed Jan 7, 2020
1 parent 3a06a63 commit 27a4b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion August Home.indigoPlugin/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>PluginVersion</key>
<string>1.0.17</string>
<string>1.0.18</string>
<key>ServerApiVersion</key>
<string>2.0</string>
<key>IwsApiVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion August Home.indigoPlugin/Contents/Server Plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ def update_all_from_august_activity_log(self):

elif activityItem.callingUser == "by Auto Relock":
indigo.server.log(u"received \"" + dev.name + "\" was Auto-Locked at " + activityItem.dateTime.strftime("%Y-%m-%d %H:%M:%S") + " (" + str(int(delta_time.total_seconds())) + " seconds ago)")
elif activityItem.action == "addedpin" or "removedpined":
elif activityItem.action == "addedpin" or activityItem.action == "removedpined":
indigo.server.log(u"received \"" + dev.name + "\" PIN Code was added or removed for a user (ignored).")
break
elif activityItem.via == "via ZWave":
Expand Down

0 comments on commit 27a4b78

Please sign in to comment.