Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 81b8ced

Browse files
committed
Merge pull request #5702 from jayvdb/runtime-error-str-format
FIX: Add missing substitution value
2 parents bce5f91 + f2fb5ff commit 81b8ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def all():
165165
os.unlink(link)
166166
else:
167167
raise RuntimeError("doc/{0} should be a directory or symlink -- it"
168-
" isn't")
168+
" isn't".format(link))
169169
if not os.path.exists(link):
170170
if hasattr(os, 'symlink'):
171171
os.symlink(target, link)

0 commit comments

Comments
 (0)