Tweak debug

This commit is contained in:
John Beard 2018-06-02 17:52:33 +01:00
parent 02f3db1a2d
commit 2eec853d08
2 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,6 @@ class CfgYamlReader(CfgReader):
self._perform_config_mapping(otype, options, MAPPINGS, to)
print to, to.__dict__
return po
def _get_layer_from_str(self, s):
@ -420,6 +419,8 @@ class CfgYamlReader(CfgReader):
except KeyError:
raise YamlError("Output need to have options specified")
logging.debug("Parsing output options for {} ({})".format(name, otype))
outdir = self._get_required(o_obj, 'dir')
output_opts = self._parse_out_opts(otype, options)

View File

@ -295,7 +295,6 @@ class Plotter(object):
po.SetAutoScale(opts.auto_scale)
po.SetScale(opts.scaling)
print opts.mirror_plot
po.SetMirror(opts.mirror_plot)
po.SetNegative(opts.negative_plot)