Skip to content
Snippets Groups Projects
Commit 8eea83fc authored by Sebastian Krings's avatar Sebastian Krings
Browse files

fix term send to prolog

parent f74c5200
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,9 @@ public class ActivateUnitPluginCommand implements IComposableCommand {
}
public void writeCommand(final IPrologTermOutput pto) {
pto.openTerm("activate_plugin(units)").closeTerm();
pto.openTerm("activate_plugin");
pto.printAtom("units");
pto.closeTerm();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment