Skip to content

Commit

Permalink
fix: reverted changes made by erroneous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aradhya-Tripathi committed May 6, 2022
1 parent 66157f6 commit b8aa008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __setup_details_from_git(self, url=None):
name = url if url else self.name
if name.startswith("git@") or name.startswith("ssh://"):
self.use_ssh = True
_first_part, _second_part = self.name.rsplit(":", 1)
_first_part, _second_part = name.rsplit(":", 1)
self.remote_server = _first_part.split("@")[-1]
self.org, _repo = _second_part.rsplit("/", 1)
else:
Expand Down

0 comments on commit b8aa008

Please sign in to comment.