import . view
In microblog/urls.py (28:39) line 4, what is import . view? Does the dot refer to the root directory?
Sorry You must be a logged in, registered user to answer a question.
Answers
Just like *nix, . refers to the current directory. So from . import views imports the views module from the current directory.