We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69893f commit a0f7b6cCopy full SHA for a0f7b6c
1 file changed
api/middleware.py
@@ -15,8 +15,8 @@ def process_request(self, request):
15
server_version = __version__.rsplit('.', 1)[0]
16
if client_version != server_version:
17
message = {
18
- 'error': 'Client and server versions do not match.\n' +
19
- 'Client version: {}\n'.format(client_version) +
+ 'error': 'Client and server versions do not match. ' +
+ 'Client version: {} '.format(client_version) +
20
'Server version: {}'.format(server_version)
21
}
22
return HttpResponse(
0 commit comments