aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/plugins/task/copy_assets.py
diff options
context:
space:
mode:
authorLibravatarAgustin Henze <tin@sluc.org.ar>2015-08-26 07:57:23 -0300
committerLibravatarAgustin Henze <tin@sluc.org.ar>2015-08-26 07:57:23 -0300
commit70ceb871117ca811d63cb02671dc0fefc2700883 (patch)
tree846133ea39797d2cd1101cff2ac0818167353490 /nikola/plugins/task/copy_assets.py
parent8559119e2f45b7f6508282962c0430423bfab051 (diff)
parent787b97a4cb24330b36f11297c6d3a7a473a907d0 (diff)
Merge tag 'upstream/7.6.4'
Upstream version 7.6.4
Diffstat (limited to 'nikola/plugins/task/copy_assets.py')
-rw-r--r--nikola/plugins/task/copy_assets.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/nikola/plugins/task/copy_assets.py b/nikola/plugins/task/copy_assets.py
index a72bfdf..58521d4 100644
--- a/nikola/plugins/task/copy_assets.py
+++ b/nikola/plugins/task/copy_assets.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.
+"""Copy theme assets into output."""
+
from __future__ import unicode_literals
import io
@@ -34,6 +36,7 @@ from nikola import utils
class CopyAssets(Task):
+
"""Copy theme assets into output."""
name = "copy_assets"
@@ -44,7 +47,6 @@ class CopyAssets(Task):
If a file is present on two themes, use the version
from the "youngest" theme.
"""
-
kw = {
"themes": self.site.THEMES,
"files_folders": self.site.config['FILES_FOLDERS'],