Skip to content
Snippets Groups Projects
Commit 1690e888 authored by nagem's avatar nagem Committed by Gunnar Schaefer
Browse files

Replace spaces with underscores in id field

parent 2f656a46
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ class RequestHandler(webapp2.RequestHandler):
name = self.request.headers.get('X-SciTran-Name')
self.origin = {
'id': method + '_' + name,
'id': (method + '_' + name).replace(' ', '_'),
'type': str(Origin.device),
'method': method,
'name': name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment