Skip to content

Commit c03263a

Browse files
committed
[support] add irc as support option
1 parent 5d09b80 commit c03263a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

codecov/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
pass
3131

3232

33-
version = VERSION = __version__ = '1.6.0'
33+
version = VERSION = __version__ = '1.6.1'
3434

3535
COLOR = True
3636

@@ -582,6 +582,7 @@ def main(*argv, **kwargs):
582582
'''$(find . -type f -name '*.php' -exec grep -nIH '^[[:space:]]*{' {} \;)\n'''
583583
'''"''')
584584
write(" --> Found %s adjustments" % (adjustments.count('\n') - adjustments.count('\n\n') - 1))
585+
adjustments = re.sub(r'[^\x00-\x7F]', '', adjustments)
585586
reports = reports + '\n# path=fixes\n' + adjustments + '<<<<<< EOF'
586587

587588
result = ''

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33
import sys
44

5-
version = '1.6.0'
5+
version = '1.6.1'
66
classifiers = ["Development Status :: 5 - Production/Stable",
77
"Environment :: Plugins",
88
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)