Merge branch 'hotfix/0.7.5' into develop

This commit is contained in:
Freddy Tan 2016-11-20 01:45:07 +08:00
commit 8ca43bb9bb

View file

@ -9,8 +9,11 @@ module_name = 'python-terraform'
short_description = 'This is a python module provide a wrapper ' \
'of terraform command line tool'
with open('DESCRIPTION.rst') as f:
try:
with open('DESCRIPTION.rst') as f:
long_description = f.read()
except IOError:
long_description = short_description
def get_version():