diff options
author | Karel Kočí <cynerd@email.cz> | 2015-08-19 10:31:19 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-08-19 10:31:19 +0200 |
commit | c1cad3004c618d02ba24814d686ea8b6de92fafc (patch) | |
tree | e4080386c678388f3bcf482ef0ee0b7b6f559a13 | |
parent | b8ca58ecb4e5dd97842c0b1cb25d490a7c4b99f0 (diff) | |
download | linux-conf-perf-c1cad3004c618d02ba24814d686ea8b6de92fafc.tar.gz linux-conf-perf-c1cad3004c618d02ba24814d686ea8b6de92fafc.tar.bz2 linux-conf-perf-c1cad3004c618d02ba24814d686ea8b6de92fafc.zip |
Remove unused atribute for parse script call
-rw-r--r-- | scripts/boot.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/boot.py b/scripts/boot.py index 6209461..aaaf174 100644 --- a/scripts/boot.py +++ b/scripts/boot.py @@ -16,8 +16,7 @@ def boot(config, to_database = True): value = None try: - out = utils.callsubprocess('parse_command', conf.parse_command + - [os.path.join(conf.output_folder, config.cfile)], + out = utils.callsubprocess('parse_command', conf.parse_command, conf.parse_output, True) value = float(out[0]) except Exception as e: |