Commit 25e6e2b3 by David Hughes

Fixes bug in compiler modified_time handling.

parent 19a22e1a
......@@ -37,7 +37,7 @@ class Compiler(object):
outfile = self.output_path(infile, compiler.output_extension)
outdated = True
else:
outdated = compiler.is_outdated(infile, outfile)
outdated = compiler.is_outdated(input_path, output_path)
try:
compiler.compile_file(infile, outfile, outdated=outdated, force=force)
except CompilerError:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment