Skip to content

Commit

Permalink
pep257
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Sep 2, 2015
1 parent 86740b1 commit e0dd354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/filters.py
Expand Up @@ -280,7 +280,7 @@ def php_template_injection(data):

@apply_to_text_file
def cssminify(data):
"""Minify CSS using http://cssminifier.com/"""
"""Minify CSS using http://cssminifier.com/."""
try:
url = 'http://cssminifier.com/raw'
_data = {'input': data}
Expand All @@ -293,7 +293,7 @@ def cssminify(data):

@apply_to_text_file
def jsminify(data):
"""Minify JS using http://javascript-minifier.com/"""
"""Minify JS using http://javascript-minifier.com/."""
try:
url = 'http://javascript-minifier.com/raw'
_data = {'input': data}
Expand Down

0 comments on commit e0dd354

Please sign in to comment.