TrivialFix: Remove logging import unused

This patch removes logging import unused in
muranoagent/executors/puppet/__init__.py

Change-Id: I09445535a42ab606ada9e8b2ca01a9bcefb4d9b1
This commit is contained in:
Cao Xuan Hoang 2016-09-08 10:38:59 +07:00
parent a58d8ae7c1
commit f388bd73db
1 changed files with 0 additions and 4 deletions

View File

@ -16,15 +16,11 @@ import os
import subprocess
import yaml
from oslo_log import log as logging
from muranoagent import bunch
import muranoagent.exceptions
from muranoagent import executors
from muranoagent.executors import chef_puppet_executor_base
LOG = logging.getLogger(__name__)
@executors.executor('Puppet')
class PuppetExecutor(chef_puppet_executor_base.ChefPuppetExecutorBase):