I am trying to concatenate a multi line string with a single line in python and it's giving me an invalid syntax error.
authHeader = '<header></header>'
reqBody = '<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope">'
+ authHeader +
'''<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<GetSnapshotUri xmlns="http://www.onvif.org/ver10/media/wsdl"><ProfileToken>quality_h264</ProfileToken></GetSnapshotUri>
</s:Body>
</s:Envelope>
'''