summaryrefslogtreecommitdiffstats
path: root/nikola/data/samplesite/dodo.py
diff options
context:
space:
mode:
Diffstat (limited to 'nikola/data/samplesite/dodo.py')
-rwxr-xr-xnikola/data/samplesite/dodo.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/nikola/data/samplesite/dodo.py b/nikola/data/samplesite/dodo.py
deleted file mode 100755
index 1be7663..0000000
--- a/nikola/data/samplesite/dodo.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-# Please don't edit this file unless you really know what you are doing.
-# The configuration is now in conf.py
-
-from doit.reporter import ExecutedOnlyReporter
-
-from nikola.nikola import Nikola
-
-import conf
-
-DOIT_CONFIG = {
- 'reporter': ExecutedOnlyReporter,
- 'default_tasks': ['render_site'],
-}
-SITE = Nikola(**conf.__dict__)
-
-
-def task_render_site():
- return SITE.gen_tasks()