diff options
-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()) |