I'm just trying to run a basic python script by importing the script to a second python module. But when I try to run it keep getting an error that says:
"exceptions.ImportError: No module name AUTO" Here is my code on the second module:
import AUTO def main(): pass if __name__ == '__main__': main() AUTO.printDate() AUTO is another module that has one function printDate() which just prints today's date. It just keeps error-ing out.
sys.path?