aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-14 22:49:23 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-14 22:49:23 +0200
commit932319b3520588445ea2cf47888e086b540c5331 (patch)
tree4e12ae38fc593aade82343c37c8b31c4166a4f41 /scripts
parentb56c0f70bc82bc10fa3a97559ba8ecb77c78a64b (diff)
downloadlinux-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.py2
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())