From 1af718f78abcc97be2e778891a1951352c76e6f6 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 12 Nov 2009 18:26:58 -0500 Subject: [PATCH] Fixed a method name in the download_lines function. --- src/Data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data.py b/src/Data.py index d953124..be5b1d2 100644 --- a/src/Data.py +++ b/src/Data.py @@ -246,7 +246,7 @@ def download_lines(states): # data if necessary. for county in state.counties: if not os.path.exists(county.lines_shapefile_path()): - url = county.tiger_data_url() + url = county.lines_data_url() tmpfile = county.lines_zipfile_name() print "Grabbing TIGER lines data for %s (%s)." % (county.full_name(), state.name) print "Downloading %s to %s..." % (url, tmpfile) -- 2.43.2