Skip to content

Commit b086319

Browse files
committed
Fix linting once more
1 parent c7477fc commit b086319

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readthedocs/core/middleware.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ def process_request(self, request):
150150
# Let 404 be handled further up stack.
151151
return None
152152

153-
if (getattr(proj, 'single_version', False)
154-
and not getattr(settings, 'USE_SUBDOMAIN', False)):
153+
if (getattr(proj, 'single_version', False) and
154+
not getattr(settings, 'USE_SUBDOMAIN', False)):
155155
request.urlconf = 'readthedocs.core.single_version_urls'
156156
# Logging
157157
host = request.get_host()

0 commit comments

Comments
 (0)