diff --git a/monkeysign/gpg.py b/monkeysign/gpg.py
index b653f73197ebaff4abd493750fdbedf456a7c05a..36487d0b3d09b629e4ee874999015f8386d42bbd 100644
--- a/monkeysign/gpg.py
+++ b/monkeysign/gpg.py
@@ -105,6 +105,7 @@ class Context():
                 'with-colons': None,
                 'with-fingerprint': None,
                 'fixed-list-mode': None,
+                'no-verbose': None,
                 'list-options': 'show-sig-subpackets,show-uid-validity,show-unusable-uids,show-unusable-subkeys,show-keyring,show-sig-expire',
                 }
 
diff --git a/monkeysign/tests/test_gpg.py b/monkeysign/tests/test_gpg.py
index 9c365286b8f7b1f32b65335954ffa6b20b2a6843..5f92c8d03121970130d94188f27d1f9fe3a4107c 100755
--- a/monkeysign/tests/test_gpg.py
+++ b/monkeysign/tests/test_gpg.py
@@ -45,7 +45,7 @@ class TestContext(unittest.TestCase):
     options = Context.options
 
     # ... and this is the rendered version of the above
-    rendered_options = ['gpg', '--command-fd', '0', '--with-fingerprint', '--list-options', 'show-sig-subpackets,show-uid-validity,show-unusable-uids,show-unusable-subkeys,show-keyring,show-sig-expire', '--batch', '--fixed-list-mode', '--no-tty', '--with-colons', '--use-agent', '--status-fd', '2', '--quiet' ]
+    rendered_options = ['gpg', '--command-fd', '0', '--with-fingerprint', '--list-options', 'show-sig-subpackets,show-uid-validity,show-unusable-uids,show-unusable-subkeys,show-keyring,show-sig-expire', '--batch', '--fixed-list-mode', '--no-tty', '--with-colons', '--use-agent', '--status-fd', '2', '--quiet', '--no-verbose' ]
 
     def setUp(self):
         self.gpg = Context()