Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/camera/foscam.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

_LOGGER = logging.getLogger(__name__)

REQUIREMENTS = ['libpyfoscam==1.0']
REQUIREMENTS = ['pyfoscam==1.2']

CONF_IP = 'ip'

Expand Down Expand Up @@ -43,7 +43,7 @@ class FoscamCam(Camera):

def __init__(self, device_info):
"""Initialize a Foscam camera."""
from libpyfoscam import FoscamCamera
from foscam import FoscamCamera

super(FoscamCam, self).__init__()

Expand Down
6 changes: 3 additions & 3 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,6 @@ libnacl==1.6.1
# homeassistant.components.dyson
libpurecoollink==0.4.2

# homeassistant.components.camera.foscam
libpyfoscam==1.0

# homeassistant.components.device_tracker.mikrotik
librouteros==2.2.0

Expand Down Expand Up @@ -1008,6 +1005,9 @@ pyflunearyou==1.0.1
# homeassistant.components.light.futurenow
pyfnip==0.2

# homeassistant.components.camera.foscam
pyfoscam==1.2

# homeassistant.components.fritzbox
pyfritzhome==0.4.0

Expand Down