We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e367f3 commit 33ba354Copy full SHA for 33ba354
1 file changed
controller/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