Merge branch 'v3.5_devel' of https://github.com/dirtbags/moth into substring-answers

This commit is contained in:
John Donaldson 2020-03-10 21:32:12 +00:00
commit 8c1c68eea0
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ def sha256hash(str):
@contextlib.contextmanager
def pushd(newdir):
newdir = str(newdir)
curdir = os.getcwd()
LOGGER.debug("Attempting to chdir from %s to %s" % (curdir, newdir))
os.chdir(newdir)
@ -273,7 +274,7 @@ class Puzzle:
elif key == "scripts" and isinstance(val, list):
for script in val:
stream = open(script, "rb")
self.add_script_stream(stream, val)
self.add_script_stream(stream, script)
elif key == "objective":
self.objective = val