Skip to content

Commit 83086a5

Browse files
committed
Fixes missing space between main SDK string and extended data
1 parent a2d3462 commit 83086a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meraki_v1/rest_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def __init__(
103103
self._req_session.headers = {
104104
'Authorization': 'Bearer ' + self._api_key,
105105
'Content-Type': 'application/json',
106-
'User-Agent': 'python-meraki/1.0.0b1' + urllib.parse.quote(json.dumps(user_agent_extended)),
106+
'User-Agent': 'python-meraki/1.0.0b1 ' + urllib.parse.quote(json.dumps(user_agent_extended)),
107107
}
108108

109109
# Log API calls

0 commit comments

Comments
 (0)