From 0d7647d904580351a87824287fc88c25bf817a10 Mon Sep 17 00:00:00 2001 From: Steve Gargan Date: Sat, 28 Feb 2015 15:23:23 +0000 Subject: [PATCH] remove debug imports from acl module --- clustering/consul_acl | 3 --- 1 file changed, 3 deletions(-) diff --git a/clustering/consul_acl b/clustering/consul_acl index ae3efe5787f..fc997400ae9 100644 --- a/clustering/consul_acl +++ b/clustering/consul_acl @@ -92,8 +92,6 @@ except ImportError: " see https://pypi.python.org/pypi/pyhcl'" sys.exit(1) -import epdb - def execute(module): @@ -216,7 +214,6 @@ class Rules: return len(self.rules) > 0 def to_json(self): - # import epdb; epdb.serve() rules = {} for key, rule in self.rules.iteritems(): rules[key] = {'policy': rule.policy}