From df2d7bed9496dc39ed8020737ccb86127b88eb01 Mon Sep 17 00:00:00 2001 From: Bryce Durham Date: Mon, 22 Mar 2021 10:39:43 -0700 Subject: [PATCH] Use double quotes. --- daphne/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daphne/testing.py b/daphne/testing.py index a6dce64..287a445 100644 --- a/daphne/testing.py +++ b/daphne/testing.py @@ -162,7 +162,7 @@ class DaphneProcess(multiprocessing.Process): try: if isinstance(self.application, str): - mod_name, _, app_name = self.application.rpartition(':') + mod_name, _, app_name = self.application.rpartition(":") module = importlib.import_module(mod_name) application = getattr(module, app_name) else: