From 356bea70c8c3b6e6bb27203c91ab38d1fcf4625a Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Tue, 16 Feb 2010 19:19:52 +0000 Subject: [PATCH] Removed old check for gpg _run_gpg checks again later anyway, and does it correctly (accepting gpg2, not just gpg). Reported by Aleksey Lim. --- zeroinstall/injector/gpg.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zeroinstall/injector/gpg.py b/zeroinstall/injector/gpg.py index 4418dc1..6f04934 100644 --- a/zeroinstall/injector/gpg.py +++ b/zeroinstall/injector/gpg.py @@ -289,11 +289,7 @@ def check_stream(stream): data is the original stream). stream must be seekable. @note: Stream returned may or may not be the one passed in. Be careful! @return: (data_stream, [Signatures])""" - if not find_in_path('gpg'): - raise SafeException(_("GnuPG is not installed ('gpg' not in $PATH). See http://gnupg.org")) - #stream.seek(0) - #all = stream.read() stream.seek(0) start = stream.read(6) -- 2.11.4.GIT