Possible duplicate: What does a . in an import statement in Python mean?
The .
is a shortcut that tells it search in current package before rest of the PYTHONPATH
. So, if a same-named module Recipe
exists somewhere else in your PYTHONPATH
, it won't be loaded.