From e66e8202db773a0935f694f7f1776c4e02773d34 Mon Sep 17 00:00:00 2001
From: PCoder <purple.coder@yahoo.co.uk>
Date: Wed, 22 Aug 2018 19:56:56 +0200
Subject: [PATCH] Remove unused variable

---
 utils/hosting_utils.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/utils/hosting_utils.py b/utils/hosting_utils.py
index 438dbc62..a69af8f5 100644
--- a/utils/hosting_utils.py
+++ b/utils/hosting_utils.py
@@ -141,8 +141,7 @@ def ping_ok(host_ipv6):
     :return True if the host responds to ping else returns False
     """
     try:
-        output = subprocess.check_output("ping6 -c 1 -w 2 " + host_ipv6,
-                                         shell=True)
+        subprocess.check_output("ping6 -c 1 -w 2 " + host_ipv6, shell=True)
     except Exception as ex:
         logger.debug(host_ipv6 + " not reachable via ping. Error = " + str(ex))
         return False