We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31056f0 + ff4c06a commit 9769fadCopy full SHA for 9769fad
mailjet_rest/client.py
@@ -15,7 +15,7 @@ class Config(object):
15
API_URL = 'https://api.mailjet.com/'
16
API_REF = 'http://dev.mailjet.com/email-api/v3/'
17
version = 'v3'
18
- user_agent = 'mailjet-apiv3-python/' + get_version()
+ user_agent = 'mailjet-apiv3-python/v' + get_version()
19
20
def __init__(self, version=None):
21
if version is not None:
mailjet_rest/utils/version.py
@@ -10,4 +10,4 @@ def get_version(version=None):
10
version = VERSION
11
else:
12
assert len(version) == 3
13
- return 'v{0}.{1}.{2}'.format(*(x for x in version))
+ return '{0}.{1}.{2}'.format(*(x for x in version))
0 commit comments