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

Skip to content

Commit 5d90618

Browse files
committed
Merge pull request #5702 from jayvdb/runtime-error-str-format
FIX: Add missing substitution value
1 parent 3a95660 commit 5d90618

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)