From e7eb1c406e442cac8679b7be3b64952def9ab7a5 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Thu, 7 Jan 2016 14:16:26 +0300 Subject: [PATCH] road_runner fix --- tools/python/road_runner.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/python/road_runner.py b/tools/python/road_runner.py index 89d7070e90..274e085113 100644 --- a/tools/python/road_runner.py +++ b/tools/python/road_runner.py @@ -78,8 +78,7 @@ for task in tasks: qtasks.join() with open(os.path.join(sys.argv[1], "ways.csv"),"w") as f: - - for way_id in way_ids.keys(): + for way_id in result: print >> f, "{0};world_level".format(way_id) print "All done."