Browse Source

Fix typo in log message

Paulo Matos 6 years ago
parent
commit
ae14d59b40
1 changed files with 1 additions and 1 deletions
  1. 1 1
      yuicompressor/yuicompressor.py

+ 1 - 1
yuicompressor/yuicompressor.py

@@ -25,7 +25,7 @@ def minify(pelican):
         for name in filenames:
             if os.path.splitext(name)[1] in ('.css','.js'):
                 filepath = os.path.join(dirpath, name)
-                logger.info('minifiy %s', filepath)
+                logger.info('minify %s', filepath)
                 verbose = '-v' if SHOW_OUTPUT else ''
                 call("yuicompressor {} --charset utf-8 {} -o {}".format(
                     verbose, filepath, filepath), shell=True)