diff --git a/docs/validator.py b/docs/validator.py index 458bebdf0..ffc4d3345 100644 --- a/docs/validator.py +++ b/docs/validator.py @@ -1,4 +1,5 @@ import re +import os import parse_source as ps @@ -44,6 +45,8 @@ def replace_all(text): text = text.replace(repl, wth) return text +print(os.getcwd()) + ps.configure_parse(replace_all, "slate.pickle") ps.run_parse()