Fix import for foscam (#9140)
While waiting for a new pyfoscam release, we can fix this for users just by changing the import. Foscam devices a pretty widely deployed, so a regression here is definitely no fun. Fixes Bug #8940
This commit is contained in:
parent
0d3fa59d77
commit
f4d464c008
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class FoscamCam(Camera):
|
|||
self._name = device_info.get(CONF_NAME)
|
||||
self._motion_status = False
|
||||
|
||||
from foscam import FoscamCamera
|
||||
from foscam.foscam import FoscamCamera
|
||||
|
||||
self._foscam_session = FoscamCamera(ip_address, port, self._username,
|
||||
self._password, verbose=False)
|
||||
|
|
Loading…
Add table
Reference in a new issue