Skip to content

Commit

Permalink
add slash if not existant in base url
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaud Fiorini <[email protected]>
  • Loading branch information
arfio committed Jul 4, 2024
1 parent 29ba74a commit 87fb30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsp/tsp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, base_url):
'''
Constructor
'''
self.base_url = base_url
self.base_url = base_url + '/' if not base_url.endswith('/') else base_url

def fetch_traces(self):
'''
Expand Down

0 comments on commit 87fb30d

Please sign in to comment.