Hi,
I have a python script tool importing several modules such as:
import sys, string, os, arcpy, time
In particular, I am interested in the time module because I call the time.strftime function in the script...
The tool works fine on my machine but fails to execute on another machine, crashing when the function time.strftime is called!
Therefore, I would like to find out which file on my machine the import time module references to. Then, I could copy this file on the other machine to make my tool works!
Thanks