summaryrefslogtreecommitdiff
path: root/qutebrowser/qutebrowser.py
diff options
context:
space:
mode:
authorAsh <relativistic.policeman@gmail.com>2020-06-03 20:41:00 -0700
committerAsh <relativistic.policeman@gmail.com>2020-06-03 20:47:28 -0700
commit2205693f477cedd5f4866a8505b8b02f8966f4fc (patch)
tree35ba2e0694a5fc7110a01fde51cea076f829e1cd /qutebrowser/qutebrowser.py
parent2493f6f0f8ad06e0f23f635ea43674b93314126b (diff)
downloadqutebrowser-2205693f477cedd5f4866a8505b8b02f8966f4fc.tar.gz
qutebrowser-2205693f477cedd5f4866a8505b8b02f8966f4fc.zip
Hook up running the test notification server.
Diffstat (limited to 'qutebrowser/qutebrowser.py')
-rw-r--r--qutebrowser/qutebrowser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qutebrowser/qutebrowser.py b/qutebrowser/qutebrowser.py
index 0ffdb5567..327388e75 100644
--- a/qutebrowser/qutebrowser.py
+++ b/qutebrowser/qutebrowser.py
@@ -172,11 +172,12 @@ def debug_flag_error(flag):
stack: Enable Chromium stack logging.
chromium: Enable Chromium logging.
werror: Turn Python warnings into errors.
+ test-notification-service: Use the testing libnotify service.
"""
valid_flags = ['debug-exit', 'pdb-postmortem', 'no-sql-history',
'no-scroll-filtering', 'log-requests', 'log-cookies',
'lost-focusproxy', 'log-scroll-pos', 'stack', 'chromium',
- 'werror']
+ 'werror', 'test-notification-service']
if flag in valid_flags:
return flag