Fix many py3.12 SyntaxWarnings as per #3561
This commit is contained in:
parent
7b299f2cad
commit
381d34522b
8 changed files with 28 additions and 25 deletions
|
|
@ -65,7 +65,7 @@ class S3Boto3StorageTests(S3Boto3TestCase):
|
|||
"""
|
||||
Test the _clean_name when the path has a trailing slash
|
||||
"""
|
||||
path = self.storage._clean_name("path\\to\\somewhere")
|
||||
path = self.storage._clean_name(r"path\to\somewhere")
|
||||
self.assertEqual(path, "path/to/somewhere")
|
||||
|
||||
def test_pickle_with_bucket(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue