From 9abd011adcefd96c56dad4403f21a7f4e4987a13 Mon Sep 17 00:00:00 2001 From: rperper Date: Fri, 2 Nov 2018 12:09:30 -0400 Subject: [PATCH] Remove pygpgme from the requirements for 16.04 --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index ff33284bd..ccc31b1e6 100755 --- a/install/install.py +++ b/install/install.py @@ -3095,7 +3095,7 @@ milter_default_action = accept fd_new = open(install_file_new,'w') lines = fd.readlines() for line in lines: - if line[:6] != 'pycurl': + if line[:6] != 'pycurl' and line[:7] != 'pygpgme': fd_new.write(line) fd.close() fd_new.close()