From: Guillaume Abrioux Date: Mon, 1 Aug 2022 21:39:35 +0000 (+0200) Subject: flake8: fix 'error E275 missing whitespace after keyword' X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1955cc7e55ae8f112eb8c7c02b95d35d2b479f17;p=ceph-ansible.git flake8: fix 'error E275 missing whitespace after keyword' Signed-off-by: Guillaume Abrioux (cherry picked from commit 7ce972e7155fd0e0aaf7352656c0805d9a2afad5) --- diff --git a/module_utils/ca_common.py b/module_utils/ca_common.py index a0ab9cc86..7bd70ce16 100644 --- a/module_utils/ca_common.py +++ b/module_utils/ca_common.py @@ -110,4 +110,4 @@ def fatal(message, module): if module: module.fail_json(msg=message, rc=1) else: - raise(Exception(message)) + raise Exception(message)