diff options
| author | 2015-08-26 07:57:04 -0300 | |
|---|---|---|
| committer | 2015-08-26 07:57:04 -0300 | |
| commit | 8041475aab2b8efad7d2857027331bd626d26312 (patch) | |
| tree | 3980e1763c067079a4cebb425d642ca9eac834bf /nikola/plugins/task/robots.py | |
| parent | b0b24795b24ee6809397fbbadf42f31f310a219f (diff) | |
Imported Upstream version 7.6.4
Diffstat (limited to 'nikola/plugins/task/robots.py')
| -rw-r--r-- | nikola/plugins/task/robots.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nikola/plugins/task/robots.py b/nikola/plugins/task/robots.py index 2f25a21..65254b6 100644 --- a/nikola/plugins/task/robots.py +++ b/nikola/plugins/task/robots.py @@ -24,6 +24,8 @@ # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +"""Generate a robots.txt file.""" + from __future__ import print_function, absolute_import, unicode_literals import io import os @@ -37,12 +39,13 @@ from nikola import utils class RobotsFile(LateTask): - """Generate a robots.txt.""" + + """Generate a robots.txt file.""" name = "robots_file" def gen_tasks(self): - """Generate a robots.txt.""" + """Generate a robots.txt file.""" kw = { "base_url": self.site.config["BASE_URL"], "site_url": self.site.config["SITE_URL"], |
