I'm trying to import a simple utils.py from the toplevel of my application, i.e.
from ttime.utils import * All I get from djangoadmin.py runserver is: "ImportError: No module named utils". The utils.py is there, but the django server can't seem to find it, I suspect this is a true newbie question: what's the best way to add simple utility functions usable for all modules to my django app? R /LarS