Browse Source

Remove unnecessary comment.

Capturing the ImportError is a common idiom in Ansible modules, and it
is not specific to tox.
Rodolfo Carvalho 8 years ago
parent
commit
0e19323dee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_health_checker/library/aos_version.py

+ 1 - 1
roles/openshift_health_checker/library/aos_version.py

@@ -24,7 +24,7 @@ IMPORT_EXCEPTION = None
 try:
     import yum  # pylint: disable=import-error
 except ImportError as err:
-    IMPORT_EXCEPTION = err  # in tox test env, yum import fails
+    IMPORT_EXCEPTION = err
 
 
 class AosVersionException(Exception):