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

Skip to content

Commit ae080f7

Browse files
committed
Fix Python3 f string
1 parent e1294e8 commit ae080f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/test/lib/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,4 +423,4 @@ def _executable(self, basename):
423423
path = osp.join(self.env_dir, "bin", basename)
424424
if osp.isfile(path) or osp.islink(path):
425425
return path
426-
raise RuntimeError(f"no regular file or symlink {path!r}")
426+
raise RuntimeError("no regular file or symlink " + str(path))

0 commit comments

Comments
 (0)