Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for #8 and #9 #10

Merged
merged 2 commits into from Jan 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions requirements_macos.txt
Expand Up @@ -7,6 +7,5 @@ parameterized
paramiko
psutil
pylint
selenium <= 3.6.0

https://pypi.python.org/packages/c8/20/3f767baf52ae14b5fa0c6a531651ecb9dbfdc5f75a3dc8eea740df72270c/pyobjc-framework-SystemConfiguration-3.2.1.tar.gz
selenium
pyobjc-framework-SystemConfiguration
2 changes: 1 addition & 1 deletion xv_leak_tools/log.py
Expand Up @@ -76,7 +76,7 @@ def _configure_logger(logger_name, stream_format, file_format, logfile, level, l
logger.addHandler(file_handler)

if stream_format:
formatter = colorlog.TTYColoredFormatter(fmt=stream_format, log_colors=log_colors)
formatter = colorlog.TTYColoredFormatter(stream=sys.stdout, fmt=stream_format, log_colors=log_colors)
stream_handler = logging.StreamHandler(stream=sys.stdout)
stream_handler.setFormatter(formatter)
logger.addHandler(stream_handler)
Expand Down