[Skip-CI] Fix method override
This commit is contained in:
parent
40e09d246d
commit
806e1eb02d
1 changed files with 2 additions and 2 deletions
|
@ -25,5 +25,5 @@ class Image(Validateable):
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def docker_build_commons_path(self):
|
def docker_build_commons_path(self):
|
||||||
list = [self.build_commons_path, self.docker_build_commons_dir_name]
|
commons_path = [self.build_commons_path, self.docker_build_commons_dir_name]
|
||||||
return "/".join(filter_none(list)) + "/"
|
return "/".join(filter_none(commons_path)) + "/"
|
||||||
|
|
Loading…
Reference in a new issue