Merge branch 'hotfix/0.7.5' into develop
This commit is contained in:
commit
8ca43bb9bb
1 changed files with 5 additions and 2 deletions
5
setup.py
5
setup.py
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue