Skip to content

Commit

Permalink
Making pydoctest happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Oct 19, 2016
1 parent 3b457f5 commit 966cb94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nikola/plugin_categories.py
Expand Up @@ -528,7 +528,7 @@ def is_enabled(self, lang=None):
return True

def get_implicit_classifications(self, lang):
"""Returns a list of classification strings which should always appear in posts_per_classification."""
"""Return a list of classification strings which should always appear in posts_per_classification."""
return []

def classify(self, post, lang):
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/task/archive.py
Expand Up @@ -76,7 +76,7 @@ def is_enabled(self, lang=None):
return True

def get_implicit_classifications(self, lang):
"""Returns a list of classification strings which should always appear in posts_per_classification."""
"""Return a list of classification strings which should always appear in posts_per_classification."""
return ['']

def classify(self, post, lang):
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/task/indexes.py
Expand Up @@ -56,7 +56,7 @@ def set_site(self, site):
return super(Indexes, self).set_site(site)

def get_implicit_classifications(self, lang):
"""Returns a list of classification strings which should always appear in posts_per_classification."""
"""Return a list of classification strings which should always appear in posts_per_classification."""
return [""]

def classify(self, post, lang):
Expand Down

0 comments on commit 966cb94

Please sign in to comment.