bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663)

This commit is contained in:
Berker Peksag 2018-08-11 08:45:06 +03:00 committed by GitHub
parent 077059e0f0
commit 423d05f6f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -813,7 +813,7 @@ class PurePath(object):
"""
f = self._flavour
if f.sep in suffix or f.altsep and f.altsep in suffix:
raise ValueError("Invalid suffix %r" % (suffix))
raise ValueError("Invalid suffix %r" % (suffix,))
if suffix and not suffix.startswith('.') or suffix == '.':
raise ValueError("Invalid suffix %r" % (suffix))
name = self.name