Quellcode durchsuchen

Merge pull request #1017 from pmatos/patch-1

Fix typo in log message
Justin Mayer vor 5 Jahren
Ursprung
Commit
bfdf49d6c6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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)