@@ -82,11 +82,11 @@ print(sText) def checkIfThereIsCode (sText, sActionId): "check if there is code in (debugging)" - if re.search(r"[.]\w+[(]|sugg\w+[(]|\(\\[0-9]|\[[0-9]", sText): + if re.search(r"[.]\w+[(]|sugg\w+[(]|\(\\[0-9]|\[(?:[0-9]:|:)", sText): print("# Warning at line " + sActionId + ": This message looks like code. Line should probably begin with =") print(sText)