# HG changeset patch # User peterjc # Date 1368436473 14400 # Node ID b863c4bec8405645621fa4b699252750e7ea6d2e # Parent 4a0aa59062f7b1aff68b82dd6cea91710b9c8285 Uploaded v0.0.11, take 10, debug output if module folder missing diff -r 4a0aa59062f7 -r b863c4bec840 tools/effectiveT3/effectiveT3.py --- a/tools/effectiveT3/effectiveT3.py Fri May 10 11:32:29 2013 -0400 +++ b/tools/effectiveT3/effectiveT3.py Mon May 13 05:14:33 2013 -0400 @@ -95,6 +95,9 @@ if not os.path.isfile(effectiveT3_jar): stop_err("Effective T3 JAR file not found: %r" % effectiveT3_jar) +if not os.path.isdir(os.path.join(effectiveT3_dir, "module")): + stop_err("Effective T3 module folder not found: %r" % os.path.join(effectiveT3_dir, "module")) + effectiveT3_model = os.path.join(effectiveT3_dir, "module", model) if not os.path.isfile(effectiveT3_model): sys.stderr.write("Contents of %r is %s\n"