diff options
| author | Josh Marshall <catchjosh@gmail.com> | 2021-03-30 14:26:36 +0900 |
|---|---|---|
| committer | Josh Marshall <catchjosh@gmail.com> | 2021-03-30 14:26:36 +0900 |
| commit | 75a9318ab26d7feb7e8bb2c2d6ce6cf6b280cf0a (patch) | |
| tree | 68e4a54343ecc84e8238b46d1dabffdf195eab5f | |
| parent | e9cabaffb40acb84be1e3b583655b95a97d77bf8 (diff) | |
| download | jsonrpclib-75a9318ab26d7feb7e8bb2c2d6ce6cf6b280cf0a.tar.gz | |
Removing format string so 3.5 is supported.
| -rw-r--r-- | tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -461,7 +461,7 @@ class UnixSocketInternalTests(InternalTests): ) def get_client(self): - print(f"Serving on {self.port}") + print("Serving on {}".format(self.port)) return Server('unix:/%s' % self.port) def tearDown(self): |
