diff options
Diffstat (limited to 'sphinx/project.py')
-rw-r--r-- | sphinx/project.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/project.py b/sphinx/project.py index ed910088e..82ea54ef3 100644 --- a/sphinx/project.py +++ b/sphinx/project.py @@ -44,7 +44,7 @@ class Project(object): """Take over a result of last build.""" self.docnames = other.docnames - def discovery(self, exclude_paths=[]): + def discover(self, exclude_paths=[]): # type: (List[unicode]) -> Set[unicode] """Find all document files in the source directory and put them in :attr:`docnames`. |