瀏覽代碼

Fix typo in log message

Paulo Matos 6 年之前
父節點
當前提交
ae14d59b40
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)