diff options
author | Karel Kočí <cynerd@email.cz> | 2015-05-14 22:49:23 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-05-14 22:49:23 +0200 |
commit | 932319b3520588445ea2cf47888e086b540c5331 (patch) | |
tree | 4e12ae38fc593aade82343c37c8b31c4166a4f41 /scripts | |
parent | b56c0f70bc82bc10fa3a97559ba8ecb77c78a64b (diff) | |
download | linux-conf-perf-932319b3520588445ea2cf47888e086b540c5331.tar.gz linux-conf-perf-932319b3520588445ea2cf47888e086b540c5331.tar.bz2 linux-conf-perf-932319b3520588445ea2cf47888e086b540c5331.zip |
Fix error in solution apply
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/solution.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/solution.py b/scripts/solution.py index 61cf65c..37db112 100644 --- a/scripts/solution.py +++ b/scripts/solution.py @@ -101,7 +101,7 @@ def apply(): solved = set() solution = [] # Load set of solved solutions - if os.path.isfile(sf(config_solved_file)): + if os.path.isfile(sf(conf.config_solved_file)): with open(sf(conf.config_solved_file)) as f: for ln in f: solved.add(ln.strip()) |