Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
fixes #37
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkala committed Apr 20, 2022
1 parent 37f33f4 commit 94eb728
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nautobot_chatops_ansible/tower.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import os

import requests

from nautobot.core.settings_funcs import is_truthy

logger = logging.getLogger("rq.worker")
Expand All @@ -31,7 +30,7 @@ def __init__(
verify_ssl (bool): Verify SSL connections. Defaults to True.
"""
if tower_uri:
self.uri = tower_uri.rstrip()
self.uri = tower_uri.rstrip().rstrip('/')
else:
self.uri = None
self.username = username
Expand Down

0 comments on commit 94eb728

Please sign in to comment.