summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Marshall <catchjosh@gmail.com>2021-03-30 14:26:36 +0900
committerJosh Marshall <catchjosh@gmail.com>2021-03-30 14:26:36 +0900
commit75a9318ab26d7feb7e8bb2c2d6ce6cf6b280cf0a (patch)
tree68e4a54343ecc84e8238b46d1dabffdf195eab5f
parente9cabaffb40acb84be1e3b583655b95a97d77bf8 (diff)
downloadjsonrpclib-75a9318ab26d7feb7e8bb2c2d6ce6cf6b280cf0a.tar.gz
Removing format string so 3.5 is supported.
-rw-r--r--tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.py b/tests.py
index 8db665c..e3e74de 100644
--- a/tests.py
+++ b/tests.py
@@ -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):