Skip to content

Commit

Permalink
Emit proper message
Browse files Browse the repository at this point in the history
  • Loading branch information
ninowalker committed Oct 21, 2010
1 parent 7cebd04 commit 7d3b5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osm_downloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, dir, max_age=None, prefix="osm"):
def download(self, region, step=0.04, overlap=0.001, callback=None, threaded=False):
threads = set([])
tiles = list(region.tiles(step=step, overlap=overlap))
print "Downloading %f,%f to %f,%f (%d tiles)..." % (region.bounds + (len(tiles),))
print "Downloading %f,%f to %f,%f (%d tiles)..." % (region.bottom, region.left, region.top, region.right, len(tiles))
pbar = ProgressBar(maxval=len(tiles))
pbar.start()
for i,tile in enumerate(tiles):
Expand Down

0 comments on commit 7d3b5e4

Please sign in to comment.