replace logging of qdelaunay string with a write to /tmp/qdel.out

This commit is contained in:
Stephen McQuay 2011-03-21 17:25:11 -06:00
parent 70eec7e4e0
commit 54bf66f0fd
1 changed files with 2 additions and 1 deletions

View File

@ -194,9 +194,10 @@ class grid(basegrid):
"""
logging.debug('start')
qdelaunay_string = get_qdelaunay_dump_str(self)
logging.info(qdelaunay_string)
with open('/tmp/qdel.out', 'w') as of:
of.write(qdelaunay_string)
cell_to_cells = []
for matcher in grid.cell_re.finditer(qdelaunay_string):
d = matcher.groupdict()