From 6464d3dd0c25664f058f1e2220bd7fa3ae964b41 Mon Sep 17 00:00:00 2001 From: Vanhala Antti Date: Mon, 31 Mar 2014 01:02:34 +0300 Subject: [PATCH] Add a missing flush after print --- mapper/makeGraph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mapper/makeGraph.py b/mapper/makeGraph.py index 1109e4f..ded7610 100755 --- a/mapper/makeGraph.py +++ b/mapper/makeGraph.py @@ -118,7 +118,8 @@ def get_full_network(): def download_names_from_nameinfo(): page = 'http://[fc5d:baa5:61fc:6ffd:9554:67f0:e290:7535]/nodes/list.json' print 'Downloading names from Mikey\'s nodelist...', - + sys.stdout.flush() + ip_dict = dict() http = httplib2.Http('.cache', timeout=15.0) r, content = http.request(page, 'GET')