changed whole autoPyLoT figure structure to fig/ax structure to keep connections to figures in memory, iPlot now part of autoPyLoT function call parameters (not yet in argparser)

This commit is contained in:
2017-05-08 15:38:41 +02:00
parent 6563b01293
commit c784d46521
7 changed files with 290 additions and 296 deletions

View File

@@ -160,7 +160,7 @@ class AutoPickParameter(object):
fid_out = open(fnout, 'w')
lines = []
for key, value in self.iteritems():
lines.append('{key}\t{value}'.format(key=key, value=value))
lines.append('{key}\t{value}\n'.format(key=key, value=value))
fid_out.writelines(lines)