From: Michael Orlitzky Date: Thu, 12 Nov 2009 23:26:58 +0000 (-0500) Subject: Fixed a method name in the download_lines function. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=1af718f78abcc97be2e778891a1951352c76e6f6 Fixed a method name in the download_lines function. --- 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)