salt.states.ceph: Remove HAS_CEPH_CFG

pylint does not like unused imports so even though we will re add this later, we
remove this now to get the code upstreamed.

Signed-off-by: Owen Synge <osynge@suse.com>
This commit is contained in:
Owen Synge 2016-07-26 11:37:46 +02:00
parent a243c46769
commit ef53fa0fd0

View File

@ -12,11 +12,6 @@ import json
# Import Salt Libs
from salt.exceptions import CommandExecutionError, CommandNotFoundError
try:
import ceph_cfg
HAS_CEPH_CFG = True
except ImportError:
HAS_CEPH_CFG = False
log = logging.getLogger(__name__)