]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
new.py: remove unnecessary semicolon
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Thu, 21 Mar 2013 15:24:54 +0000 (16:24 +0100)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Thu, 21 Mar 2013 15:24:54 +0000 (16:24 +0100)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
ceph_deploy/new.py

index 5f5c269177e155d90546395464a6c946856f5958..abd8c2889968e4c64f6c69d1fd43af8cff124f95 100644 (file)
@@ -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)