Add missing slash to relative urls

This commit is contained in:
Ivan Habunek 2017-04-12 17:03:04 +02:00
parent a365147a19
commit 8e4342b818
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ DEFAULT_INSTANCE = 'mastodon.social'
def create_app(base_url):
url = base_url + 'api/v1/apps'
url = base_url + '/api/v1/apps'
response = requests.post(url, {
'client_name': 'toot',
@ -29,7 +29,7 @@ def create_app(base_url):
def login(app, username, password):
url = app.base_url + 'oauth/token'
url = app.base_url + '/oauth/token'
response = requests.post(url, {
'grant_type': 'password',