Skip to content

Commit

Permalink
Merge pull request #39 from DelineaXPM/slashIssue.delinea.sagar
Browse files Browse the repository at this point in the history
Fixed bug related to base_url trailing slash
  • Loading branch information
delineaKrehl authored Nov 30, 2023
2 parents cb00379 + 6e31c7b commit cecc665
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delinea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The Delinea Secret Server Python SDK"""

__version__ = "1.2.2"
__version__ = "1.2.3"
2 changes: 1 addition & 1 deletion delinea/secrets/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def __init__(

self.base_url = base_url.rstrip("/")
self.authorizer = authorizer
self.api_url = f"{base_url}/{api_path_uri.strip('/')}"
self.api_url = f"{self.base_url}/{api_path_uri.strip('/')}"

def get_secret_json(self, id, query_params=None):
"""Gets a Secret from Secret Server
Expand Down

0 comments on commit cecc665

Please sign in to comment.