-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
echo_via_pager broken on Windows in 7.1 #1514
Milestone
Comments
2 tasks
Same issue as here - and same root cause: >>> os.environ['PAGER'] = 'less -SRXF'
>>> import click
>>> text = [f"hello {i} \n" for i in range(1000)]
>>> click.echo_via_pager(text)
The system cannot find the file specified.
>>> os.environ['PAGER'] = 'less'
>>> click.echo_via_pager(text)
hello 0
hello 1
hello 2
hello 3
[...] |
|
Due to #1470. I'll see about reverting that or fixing it on Windows. |
Click 7.1.2 is available on PyPI. |
@davidism could you take a look at #1501? We reverted back @platformio to 7.0. Click is broken on Windows. |
Missed that issue, but it's due to the same thing, so that's should be fixed too. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Calls to
click.echo_via_pager
are failing on Windows since upgrading to 7.1Expected behavior (7.0)
Actual behavior (7.1)
Notes
Environment
The text was updated successfully, but these errors were encountered: