Fixed a lint error

This commit is contained in:
justinta89 2015-09-03 10:21:41 -06:00
parent 5a33017791
commit 8c42178e1a

View File

@ -52,7 +52,7 @@ def __has_required_azure():
'''
if hasattr(azure, '__version__'):
version = LooseVersion(azure.__version__)
else:
else:
import azure.common
version = LooseVersion(azure.common.__version__)
if HAS_AZURE is True and REQUIRED_AZURE <= version: