Skip to content

Commit eaa02ba

Browse files
committed
[bootstrap] Fix Python 3 compatibility regression
1 parent 5e3a6d3 commit eaa02ba

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)