Skip to content

Commit

Permalink
Bumped to 0.5.3 with adjustment to sys.path in hillup-seed.py
Browse files Browse the repository at this point in the history
  • Loading branch information
migurski committed Sep 12, 2012
1 parent 6aac554 commit 3b3c4ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.2
0.5.3
3 changes: 3 additions & 0 deletions hillup-seed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
"""
"""
from sys import path
from optparse import OptionParser

from TileStache import getTile
Expand Down Expand Up @@ -71,6 +72,8 @@ def generateCoordinates(ul, lr, zooms, padding):

if __name__ == '__main__':

path.insert(0, '.')

options, zooms = parser.parse_args()

lat1, lon1, lat2, lon2 = options.bbox
Expand Down

0 comments on commit 3b3c4ae

Please sign in to comment.