Ignore no name in module for distutils.version

This commit is contained in:
Pedro Algarvio 2015-04-21 13:52:13 +01:00
parent 8a0e042787
commit 3d058759dc

View File

@ -26,12 +26,12 @@ returns a list of key/value pairs for all of the EC2 tags assigned to
the instance.
'''
from __future__ import absolute_import
# Import python libs
from __future__ import absolute_import
import re
import logging
from distutils.version import StrictVersion
from distutils.version import StrictVersion # pylint: disable=no-name-in-module
# Import AWS Boto libs
try: