Skip to content

Commit f91a3ee

Browse files
Fix #5 , Fix #6
1 parent a98ee26 commit f91a3ee

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

css-html-js-minify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from io import StringIO # lint:ok
3838

3939

40-
__version__ = "1.0.11"
40+
__version__ = "1.0.12"
4141
__license__ = "GPLv3+ LGPLv3+"
4242
__author__ = "Juan Carlos"
4343
__email__ = "juancarlospaco@gmail.com"
@@ -877,7 +877,7 @@ def minify(self, instream=None, outstream=None):
877877
def walkdir_to_filelist(where, target, omit):
878878
"""Perform full walk of where, gather full path of all files."""
879879
log.debug("""Recursively Scanning {}, searching for {}, and ignoring {}.
880-
""".format(where, target.upper(), omit.upper()))
880+
""".format(where, target, omit))
881881
return tuple([os.path.join(root, f) for root, d, files in os.walk(where)
882882
for f in files if not f.startswith('.') # ignore hidden
883883
and not f.endswith(omit) # not process processed file

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# To Upload to PyPI by executing: python3 setup.py sdist upload -r pypi
55

66

7-
"""Setup.py for Python Wheels, as Generic as possible."""
7+
"""Setup.py for Python, as Generic as possible."""
88

99

1010
import os
@@ -49,9 +49,6 @@ def find_this(search, filename=MODULE_PATH):
4949
requires=['pip'],
5050

5151
scripts=["css-html-js-minify.py"],
52-
entry_points = {
53-
'console_scripts': ['css-html-js-minify = css_html_js_minify']
54-
},
5552

5653
keywords=['CSS', 'HTML', 'JS', 'Compressor', 'CSS3', 'HTML5', 'Web',
5754
'Javascript', 'Minifier', 'Minify', 'Uglify', 'Obfuscator',

0 commit comments

Comments
 (0)