How to have one object face another

My original intention was to use the Steering actuator to modify the rotation of an object based on the location of another, so I set the velocity to 0.0 with the facing property. This however makes the actuator entirely unresponsive. Is there a way to get the same effect using python or another way? Am I doing something wrong?

Vec2Target = own.getVectTo(own[‘Target’])
own.alignAxisToVect(Vec2Target[1],axis(0 or 1 or 2), (0-1[speed]))

also this is handy
Vel = own.worldLinearVelocity.copy()
Vel.z=0

own.alignAxisToVect(Vel,(axis),(speed))

Thanks, this worked fine for me.