aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-06-17 19:49:47 -0500
committerJesús <heckyel@hyperbola.info>2020-06-17 19:49:47 -0500
commite94936a39e00521b0e3f532e310c0fe53e0d8267 (patch)
tree9fee949a6721ab10e79beb23921ccc2a90eba0e0 /plugins
parent15b859f0add6b6dd223f09e428e6eafcbfcf1f75 (diff)
downloadlibretube-e94936a39e00521b0e3f532e310c0fe53e0d8267.tar.lz
libretube-e94936a39e00521b0e3f532e310c0fe53e0d8267.tar.xz
libretube-e94936a39e00521b0e3f532e310c0fe53e0d8267.zip
pep8
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pelican-css-js/pelican_css_js.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/pelican-css-js/pelican_css_js.py b/plugins/pelican-css-js/pelican_css_js.py
index 9cab8a6..1b07e68 100644
--- a/plugins/pelican-css-js/pelican_css_js.py
+++ b/plugins/pelican-css-js/pelican_css_js.py
@@ -41,8 +41,10 @@ def add_files(gen, metadata):
add the javascripts and/or stylesheets to the article
"""
site_url = gen.settings['SITEURL']
- formatters = {'styles': '<link rel="stylesheet" href="{0}" type="text/css" />',
- 'js': '<script src="{0}"></script>'}
+ formatters = {
+ 'styles': '<link rel="stylesheet" href="{0}" type="text/css" />',
+ 'js': '<script src="{0}"></script>'
+ }
dirnames = {'styles': 'css',
'js': 'js'}
for key in ['styles', 'js']: