Skip to content

Commit

Permalink
fix: Trailing slash not setting app name properly
Browse files Browse the repository at this point in the history
Re-do of frappe#1021, somewhat
  • Loading branch information
gavindsouza committed Nov 30, 2021
1 parent 99d4e5a commit 357fcc0
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 @@ -58,7 +58,7 @@ def __init__(self, name: str, branch: str = None, to_clone: bool = True):
class Healthcare(AppConfig):
dependencies = [{"frappe/erpnext": "~13.17.0"}]
"""
self.name = name
self.name = name.rstrip('/')
self.remote_server = "github.com"
self.to_clone = to_clone
self.on_disk = False
Expand Down

0 comments on commit 357fcc0

Please sign in to comment.