From 2e3c19cb607f39b2a95384e0b8b21b11ac313c63 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Wed, 23 Mar 2005 00:07:55 +0000
Subject: [PATCH] patch from Nolith to prevent a crash when the GPG key is not
 fully-trusted

---
 Core/core.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Core/core.py b/Core/core.py
index 9a1c3d03ed..5ab6c962e9 100644
--- a/Core/core.py
+++ b/Core/core.py
@@ -68,6 +68,8 @@ else:
 			self.options.armor = 1
 			self.options.meta_interactive = 0
 			self.options.extra_args.append('--no-secmem-warning')
+			# Nolith's patch - prevent crashs on non fully-trusted keys
+			self.options.extra_args.append('--always-trust')
 
 		def _read_response(self, child_stdout):
 			# Internal method: reads all the output from GPG, taking notice
-- 
GitLab