Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Fix typo in --enable-browser-output description
Browse files Browse the repository at this point in the history
  • Loading branch information
zmwangx committed Aug 27, 2016
1 parent d369d34 commit 4c84a48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ and upgrade by running
--noua disable user agent
--json output in JSON format; implies --noprompt
--enable-browser-output
do not suppress browser output (stdin and stdout)
do not suppress browser output (stdout and stderr)
--np, --noprompt perform search and exit, do not prompt for further
interactions
-d, --debug enable debugging
Expand Down
4 changes: 2 additions & 2 deletions googler
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ RAW_DOWNLOAD_REPO_BASE = 'https://raw.githubusercontent.com/jarun/googler'
def open_url(url):
"""Open an URL in the user's default web browser.
Whether the browser's output (both stdin and stdout) are suppressed
Whether the browser's output (both stdout and stderr) are suppressed
depends on the boolean attribute ``open_url.suppress_browser_output``.
If the attribute is not set upon a call, set it to a default value,
which means False if BROWSER is set to a known text-based browser --
Expand Down Expand Up @@ -2085,7 +2085,7 @@ def parse_args(args=None, namespace=None):
addarg('--json', dest='json', action='store_true',
help='output in JSON format; implies --noprompt')
addarg('--enable-browser-output', dest='enable_browser_output', action='store_true',
help='do not suppress browser output (stdin and stdout)')
help='do not suppress browser output (stdout and stderr)')
addarg('--np', '--noprompt', dest='noninteractive', action='store_true',
help='perform search and exit, do not prompt for further interactions')
addarg('-d', '--debug', dest='debug', action='store_true',
Expand Down

0 comments on commit 4c84a48

Please sign in to comment.