Show More
@@ -381,8 +381,8 class install_lib_symlink(Command): | |||
|
381 | 381 | try: |
|
382 | 382 | os.symlink(pkg, dest) |
|
383 | 383 | except OSError as e: |
|
384 | if e.errno == errno.EEXIST: | |
|
385 |
print(' |
|
|
384 | if e.errno == errno.EEXIST and os.path.islink(dest): | |
|
385 | print('Symlink already exists') | |
|
386 | 386 | else: |
|
387 | 387 | raise |
|
388 | 388 |
General Comments 0
You need to be logged in to leave comments.
Login now