summaryrefslogtreecommitdiff
path: root/qutebrowser/qutebrowser.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-06-22 14:38:29 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-06-22 20:08:56 +0200
commitad3b278813e77007dd3206d6c146dd8bddce8dc0 (patch)
treedd266e748389f0357a07c4b4463c3be8d67d8354 /qutebrowser/qutebrowser.py
parentd88ad0ccb637b1feb450923fa11f055946cc3e7b (diff)
downloadqutebrowser-ad3b278813e77007dd3206d6c146dd8bddce8dc0.tar.gz
qutebrowser-ad3b278813e77007dd3206d6c146dd8bddce8dc0.zip
Rename :inspector to :devtools
The general consensus seems to be that the inspector is the first tab of the devtools, and Chromium also calls them devtools everywhere. Closes #5438
Diffstat (limited to 'qutebrowser/qutebrowser.py')
-rw-r--r--qutebrowser/qutebrowser.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/qutebrowser/qutebrowser.py b/qutebrowser/qutebrowser.py
index 8765f5217..124da3b28 100644
--- a/qutebrowser/qutebrowser.py
+++ b/qutebrowser/qutebrowser.py
@@ -83,13 +83,13 @@ def get_argparser():
parser.add_argument('--backend', choices=['webkit', 'webengine'],
help="Which backend to use.")
parser.add_argument('--enable-webengine-inspector', action='store_true',
- help="Enable the web inspector for QtWebEngine. Note "
- "that this is a SECURITY RISK and you should not "
- "visit untrusted websites with the inspector turned "
- "on. See https://bugreports.qt.io/browse/QTBUG-50725 "
- "for more details. This is not needed anymore since "
- "Qt 5.11 where the inspector is always enabled and "
- "secure.")
+ help="Enable the web inspector / devtools for "
+ "QtWebEngine. Note that this is a SECURITY RISK and "
+ "you should not visit untrusted websites with the "
+ "inspector turned on. See "
+ "https://bugreports.qt.io/browse/QTBUG-50725 for more"
+ "details. This is not needed anymore since Qt 5.11"
+ "where the inspector is always enabled and secure.")
parser.add_argument('--json-args', help=argparse.SUPPRESS)
parser.add_argument('--temp-basedir-restarted', help=argparse.SUPPRESS)