Explorar o código

Remove unnecessary comment.

Capturing the ImportError is a common idiom in Ansible modules, and it
is not specific to tox.
Rodolfo Carvalho %!s(int64=8) %!d(string=hai) anos
pai
achega
0e19323dee
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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):