Commit fb5a3429 by Michael DeHaan

Merge pull request #5420 from levigross/devel

Fixed syntax error and removed unused imports
parents e8d9f589 dc6a2612
...@@ -15,8 +15,7 @@ ...@@ -15,8 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from ansible import utils, errors, constants from ansible import utils
import os
import urllib2 import urllib2
try: try:
import json import json
...@@ -27,7 +26,7 @@ except ImportError: ...@@ -27,7 +26,7 @@ except ImportError:
ANSIBLE_ETCD_URL = 'http://127.0.0.1:4001' ANSIBLE_ETCD_URL = 'http://127.0.0.1:4001'
class etcd(): class etcd():
def __init__(self, url=ANSIBLE_ETCD_URL) def __init__(self, url=ANSIBLE_ETCD_URL):
self.url = url self.url = url
self.baseurl = '%s/v1/keys' % (self.url) self.baseurl = '%s/v1/keys' % (self.url)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment