From bb4d46f09ce3732a25b3969313547f2ed0be2ed5 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sat, 3 Feb 2018 23:29:37 -0800 Subject: [PATCH] Fix string concatenation (duh) --- daphne/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daphne/server.py b/daphne/server.py index 8390527..8132e68 100755 --- a/daphne/server.py +++ b/daphne/server.py @@ -4,8 +4,8 @@ import warnings # isort:skip from twisted.internet import asyncioreactor # isort:skip if "twisted.internet.reactor" in sys.modules: warnings.warn( - "Something has already installed a Twisted reactor. Attempting to uninstall it; ", - "you can fix this warning by importing daphne.server early in your codebase or ", + "Something has already installed a Twisted reactor. Attempting to uninstall it; " + + "you can fix this warning by importing daphne.server early in your codebase or " + "finding the package that imports Twisted and importing it later on." ) del sys.modules["twisted.internet.reactor"]