summaryrefslogtreecommitdiff
path: root/cloudinit/handlers
diff options
context:
space:
mode:
authorDaniel Watkins <oddbloke@ubuntu.com>2020-09-16 09:53:09 -0400
committerGitHub <noreply@github.com>2020-09-16 09:53:09 -0400
commit22220e200a43f9a172e1abac93907b48d60d3ee0 (patch)
tree8e4b6b9f685893f4332f832fff60cd2da08c297a /cloudinit/handlers
parent6d332e5c8dbfb6521a530b1fa49d73da51efff96 (diff)
downloadvyos-cloud-init-22220e200a43f9a172e1abac93907b48d60d3ee0.tar.gz
vyos-cloud-init-22220e200a43f9a172e1abac93907b48d60d3ee0.zip
cloudinit: remove unused LOG variables (#574)
Co-authored-by: Rick Harding <rharding@mitechie.com>
Diffstat (limited to 'cloudinit/handlers')
-rw-r--r--cloudinit/handlers/shell_script.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/cloudinit/handlers/shell_script.py b/cloudinit/handlers/shell_script.py
index 214714bc..9917f551 100644
--- a/cloudinit/handlers/shell_script.py
+++ b/cloudinit/handlers/shell_script.py
@@ -11,13 +11,10 @@
import os
from cloudinit import handlers
-from cloudinit import log as logging
from cloudinit import util
from cloudinit.settings import (PER_ALWAYS)
-LOG = logging.getLogger(__name__)
-
class ShellScriptPartHandler(handlers.Handler):