Skip to content

Commit 389ce07

Browse files
committed
Merge pull request #238 from RLovelett/bootstrap-python3-compat
[bootstrap] Fix Python 3 compatibility regression
2 parents 3c05641 + eaa02ba commit 389ce07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def symlink_force(target, link_name):
5858
link_name = os.path.join(link_name, os.path.basename(target))
5959
try:
6060
os.symlink(target, link_name)
61-
except OSError, e:
61+
except OSError as e:
6262
if e.errno == errno.EEXIST:
6363
os.remove(link_name)
6464
os.symlink(target, link_name)

0 commit comments

Comments
 (0)