diff --git a/misc/style/check-parameter-order.py b/misc/style/check-parameter-order.py index 500c1ab0dd..b12dbf8010 100755 --- a/misc/style/check-parameter-order.py +++ b/misc/style/check-parameter-order.py @@ -60,6 +60,7 @@ def matching(opening, closing): return (opening, closing) == ('(', ')') or (opening, closing) == ('[', ']') def extract_feature_parameter_list(feature_name): + print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout)) s = str(subprocess.run(["./../../builds/release/bin/downward", "--help", "--txt2tags", "{}".format(feature_name)], stdout=subprocess.PIPE).stdout) position = s.find(feature_name + "(") assert position != -1