Skip to content

Commit 91c5b71

Browse files
committed
Merged in jveatch/virtualenvwrapper/fix-py26-logging (pull request #41)
Pass stream as arg rather than kwarg to avoid py26 conflict.
2 parents a60920e + 6b582de commit 91c5b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

virtualenvwrapper/hook_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def main():
9898
root_logger.addHandler(file_handler)
9999

100100
# Send higher-level messages to the console, too
101-
console = logging.StreamHandler(stream=sys.stderr)
101+
console = logging.StreamHandler(sys.stderr)
102102
console_level = [logging.WARNING,
103103
logging.INFO,
104104
logging.DEBUG,

0 commit comments

Comments
 (0)