Explorar el Código

Fix typo in log message

Paulo Matos hace 6 años
padre
commit
ae14d59b40
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)