diff options
author | Kali Kaneko <kali@leap.se> | 2015-08-04 12:18:50 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-08-04 12:18:50 -0400 |
commit | 5a97000032cf9cdb8dee5310126f6de11b09d942 (patch) | |
tree | ad4b6f576bcf488188cab873a9bc316c903daeba /src/leap/mail/tests | |
parent | 570bf35249b1271a9453d5970059e080f2947d17 (diff) |
[style] pep8 fixes + pep8 script
Diffstat (limited to 'src/leap/mail/tests')
-rw-r--r-- | src/leap/mail/tests/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
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): |