From 5a97000032cf9cdb8dee5310126f6de11b09d942 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 4 Aug 2015 12:18:50 -0400 Subject: [style] pep8 fixes + pep8 script --- src/leap/mail/tests/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/leap/mail/tests/__init__.py') diff --git a/src/leap/mail/tests/__init__.py b/src/leap/mail/tests/__init__.py index b35107d..de0088f 100644 --- a/src/leap/mail/tests/__init__.py +++ b/src/leap/mail/tests/__init__.py @@ -34,7 +34,8 @@ from leap.common.testing.basetest import BaseLeapTest def _find_gpg(): gpg_path = distutils.spawn.find_executable('gpg') - return os.path.realpath(gpg_path) if gpg_path is not None else "/usr/bin/gpg" + return (os.path.realpath(gpg_path) + if gpg_path is not None else "/usr/bin/gpg") class TestCaseWithKeyManager(unittest.TestCase, BaseLeapTest): -- cgit v1.2.3