Fix string concatenation (duh)

This commit is contained in:
Andrew Godwin 2018-02-03 23:29:37 -08:00
parent 7949b244b8
commit bb4d46f09c

View File

@ -4,8 +4,8 @@ import warnings # isort:skip
from twisted.internet import asyncioreactor # isort:skip from twisted.internet import asyncioreactor # isort:skip
if "twisted.internet.reactor" in sys.modules: if "twisted.internet.reactor" in sys.modules:
warnings.warn( warnings.warn(
"Something has already installed a Twisted reactor. Attempting to uninstall it; ", "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 ", "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." "finding the package that imports Twisted and importing it later on."
) )
del sys.modules["twisted.internet.reactor"] del sys.modules["twisted.internet.reactor"]