Skip to content

Commit

Permalink
Merge pull request #317 from Res260/issue295
Browse files Browse the repository at this point in the history
Fix a bug where App_Base.getSplunkbasePath() was broken and did not w…
  • Loading branch information
pyth0n1c authored Nov 4, 2024
2 parents 0772aa0 + c246fa7 commit 855a761
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 855a761

Please sign in to comment.