0

damn semicolons!

This commit is contained in:
Andrew Brown
2011-11-06 20:58:50 -05:00
parent 13bca41192
commit 2e28375786
2 changed files with 4 additions and 4 deletions

View File

@@ -299,7 +299,7 @@ class QuadtreeGen(object):
#stat the tile, we need to know if it exists or it's mtime
try:
tile_mtime = os.stat(imgpath)[stat.ST_MTIME];
tile_mtime = os.stat(imgpath)[stat.ST_MTIME]
except OSError, e:
if e.errno != errno.ENOENT:
raise
@@ -401,7 +401,7 @@ class QuadtreeGen(object):
world = self.world
#stat the file, we need to know if it exists or it's mtime
try:
tile_mtime = os.stat(imgpath)[stat.ST_MTIME];
tile_mtime = os.stat(imgpath)[stat.ST_MTIME]
except OSError, e:
if e.errno != errno.ENOENT:
raise