Skip to content

Commit

Permalink
Fix a bug where App_Base.getSplunkbasePath() was broken and did not w…
Browse files Browse the repository at this point in the history
…ork at all. Fixes splunk#295.
  • Loading branch information
Res260 committed Oct 24, 2024
1 parent f9bcd7e commit c246fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contentctl/objects/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class App_Base(BaseModel,ABC):


def getSplunkbasePath(self)->HttpUrl:
return HttpUrl(SPLUNKBASE_URL.format(uid=self.uid, release=self.version))
return HttpUrl(SPLUNKBASE_URL.format(uid=self.uid, version=self.version))

@abstractmethod
def getApp(self, config:test, stage_file:bool=False)->str:
Expand Down

0 comments on commit c246fa7

Please sign in to comment.