Updated setup.py (workaround for issue 229)

This adds a workaround for [issue 229](https://github.com/erkin/ponysay/issues/229), placing the line into a `try`-`except` statement so that the installation *shouldn't* come to a halt.
This commit is contained in:
Joe Glancy 2015-12-06 22:21:08 +00:00
parent 42280dbdb5
commit 9f2a551ffc

View file

@ -922,7 +922,10 @@ class Setup():
if target.startswith('./') or target.startswith('../'):
os.symlink(target, dest)
elif '/' not in target:
os.symlink('./' + target, dest)
try:
os.symlink('./' + target, dest)
except:
pass
else:
targets = target.split('/')
dests = dest.split('/')