You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When PyMI replaced the WMI implementation, the method contract for
`conn.BcdStore.OpenStore` changed, leading to an error:
```bash
ValueError: not enough values to unpack (expected 2, got 1)
```
Under PyMI, the following returns one element if the store is found,
two elements otherwise:
```python
>> conn.BcdStore.OpenStore(File="fake")
(False, None)
>> conn.BcdStore.OpenStore(File="")
(<pymi_object: >,)
```
Fixes: #146
Change-Id: Ibb298e4c92c451946a3ac4cfd2e436b2b3c203cf
Signed-off-by: Adrian Vladu <[email protected]>
0 commit comments