diff options
| author | Patrick Williams <patrick@stwcx.xyz> | 2016-06-06 11:26:31 -0500 |
|---|---|---|
| committer | Patrick Williams <patrick@stwcx.xyz> | 2016-06-06 11:26:31 -0500 |
| commit | 362fb80c081e114236cc5d29b166f45fd4539041 (patch) | |
| tree | 01a6a20883e6e55da867fa9c24aee54559320fb5 /obmc/dbuslib | |
| parent | 7c8263573fb5ed25001db9c78eb4a149c057358a (diff) | |
| parent | d0827b164ff2893cfb0ffd73a2fc8215e3478514 (diff) | |
| download | pyphosphor-362fb80c081e114236cc5d29b166f45fd4539041.tar.gz pyphosphor-362fb80c081e114236cc5d29b166f45fd4539041.zip | |
Merge pull request #2 from bradbishop/set-multiple-bug
Fix bug injected during skeleton port
Diffstat (limited to 'obmc/dbuslib')
| -rw-r--r-- | obmc/dbuslib/bindings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/obmc/dbuslib/bindings.py b/obmc/dbuslib/bindings.py index 51b9e59..c7da8b8 100644 --- a/obmc/dbuslib/bindings.py +++ b/obmc/dbuslib/bindings.py @@ -90,7 +90,7 @@ class DbusProperties(dbus.service.Object): @dbus.service.method( "org.openbmc.Object.Properties", in_signature='sa{sv}') def SetMultiple(self, interface_name, prop_dict): - if (interface_name in self.properties): + if (interface_name not in self.properties): self.properties[interface_name] = {} value_changed = False |

