From 102190e61b58ec964c7562914f8949165e47cff5 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 18 May 2019 11:41:17 -0400 Subject: [PATCH 1/2] Changed log to print --- blinkpy/blinkpy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blinkpy/blinkpy.py b/blinkpy/blinkpy.py index 6518c95d..d574d1de 100644 --- a/blinkpy/blinkpy.py +++ b/blinkpy/blinkpy.py @@ -325,5 +325,5 @@ def _parse_downloaded_items(self, result, camera, path, debug): _LOGGER.info("Downloaded video to %s", filename) else: - _LOGGER.info("Camera: %s, Timestamp: %s, Address: %s", - camera_name, created_at, address) + print("Camera: {}, Timestamp: {}, Address: {}".format( + camera_name, created_at, address)) From dcf0ce639438d347fe2bb4025955a97c388c2241 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 18 May 2019 11:51:58 -0400 Subject: [PATCH 2/2] Fix lint issue --- blinkpy/blinkpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blinkpy/blinkpy.py b/blinkpy/blinkpy.py index d574d1de..0e4569f0 100644 --- a/blinkpy/blinkpy.py +++ b/blinkpy/blinkpy.py @@ -326,4 +326,4 @@ def _parse_downloaded_items(self, result, camera, path, debug): _LOGGER.info("Downloaded video to %s", filename) else: print("Camera: {}, Timestamp: {}, Address: {}".format( - camera_name, created_at, address)) + camera_name, created_at, address))