From: Danny Al-Gaaf Date: Thu, 21 Mar 2013 15:24:54 +0000 (+0100) Subject: new.py: remove unnecessary semicolon X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3441bff39f2b7ebd2d504951a912d2c3589da3c9;p=ceph-deploy.git new.py: remove unnecessary semicolon Signed-off-by: Danny Al-Gaaf --- diff --git a/ceph_deploy/new.py b/ceph_deploy/new.py index 5f5c269..abd8c28 100644 --- a/ceph_deploy/new.py +++ b/ceph_deploy/new.py @@ -32,7 +32,7 @@ def get_nonlocal_ip(host): ailist = socket.getaddrinfo(host, None) for ai in ailist: # an ai is a 5-tuple; the last element is (ip, port) - ip = ai[4][0]; + ip = ai[4][0] if not ip.startswith('127.'): return ip raise exc.UnableToResolveError(host)